:root {
  --green-900: #0f3d1c;
  --green-800: #1b5a2b;
  --green-700: #2f7a3a;
  --green-600: #49b848;
  --green-500: #6ad06a;
  --green-200: #dff4e2;
  --cream: #f6f7f2;
  --ink: #1b1f1d;
  --muted: #5b6a62;
  --accent: #f2a93b;
  --red-700: #c0392b;
  --red-600: #e53e3e;
  --red-100: #fff0f0;
  --shadow-lg: 0 24px 60px rgba(15, 61, 28, 0.18);
  --shadow-md: 0 14px 36px rgba(15, 61, 28, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 20%, rgba(106, 208, 106, 0.25), transparent 55%),
              radial-gradient(circle at 90% 0%, rgba(73, 184, 72, 0.18), transparent 45%),
              linear-gradient(180deg, #f8faf6 0%, #eef6ef 50%, #f6f7f2 100%);
  scroll-behavior: smooth;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(0px);
}

body::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 120px;
  background: rgba(73, 184, 72, 0.12);
}

body::after {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: 120px;
  background: rgba(242, 169, 59, 0.15);
}

img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(73, 184, 72, 0.18);
}

.top-bar {
  background: var(--green-900);
  color: #f4fff4;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.top-bar span {
  opacity: 0.9;
}

.top-bar span:first-child {
  color: #ffbbbb;
  font-weight: 600;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-900);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand img {
  width: 180px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: var(--green-200);
  color: var(--green-900);
}

.nav a.active {
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 10px 24px rgba(73, 184, 72, 0.3);
}

.nav-toggle {
  display: none;
  background: var(--green-600);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  padding: 80px 0 60px;
}

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

.hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--green-900);
  margin: 0 0 14px;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 62, 62, 0.1);
  color: var(--red-700);
  border: 1px solid rgba(229, 62, 62, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(73, 184, 72, 0.18);
}

.hero-illustration {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 16px;
  background: var(--cream);
}

.hero-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 16px 30px rgba(15, 61, 28, 0.12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.stat {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px;
  border-left: 3px solid var(--red-600);
}

.stat h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  color: var(--red-700);
}

.stat p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(73, 184, 72, 0.12);
  border-bottom: 1px solid rgba(73, 184, 72, 0.12);
}

.section h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 12px;
  color: var(--green-900);
}

.section p.lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

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

.card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(73, 184, 72, 0.15);
}

.card h3 {
  margin-top: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--green-800);
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.card-media {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(73, 184, 72, 0.2);
}

.card-icon-media {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(73, 184, 72, 0.12), rgba(15, 61, 28, 0.06));
  border: 1px solid rgba(73, 184, 72, 0.2);
  padding: 18px;
}

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

.media-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(73, 184, 72, 0.2);
  box-shadow: var(--shadow-md);
}

.callout {
  background: linear-gradient(135deg, rgba(73, 184, 72, 0.18), rgba(15, 61, 28, 0.02));
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(73, 184, 72, 0.25);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.list-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.list-check li::before {
  content: "✓";
  color: var(--green-600);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 14px 28px rgba(229, 62, 62, 0.35);
}

.btn.primary:hover {
  background: var(--red-700);
}

.btn.secondary {
  border-color: var(--green-600);
  color: var(--green-900);
}

.btn.secondary:hover {
  background: var(--green-200);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.footer {
  background: linear-gradient(135deg, var(--green-900) 80%, #3b0a0a 100%);
  color: #e9f7ea;
  padding: 32px 0 40px;
  margin-top: 40px;
  border-top: 3px solid var(--red-600);
}

.footer a {
  color: #e9f7ea;
  text-decoration: none;
}

.footer .brand img {
  width: 150px;
  filter: brightness(1.1);
}

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

.footer p {
  color: rgba(233, 247, 234, 0.82);
  line-height: 1.6;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(73, 184, 72, 0.2);
  box-shadow: var(--shadow-md);
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 61, 28, 0.2);
  font-family: "Work Sans", sans-serif;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s ease;
}

.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav { 
    position: absolute;
    top: 100%;
    right: 4%;
    background: #fff;
    flex-direction: column;
    padding: 14px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease;
  }
  .site-header.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 680px) {
  .top-bar .container { justify-content: center; text-align: center; }
  .hero { padding-top: 60px; }
  .brand img { width: 150px; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}
