:root {
  --bg: #eef5f0;
  --brand: #1f8a49;
  --dark: #0f2c1a;
  --muted: #547260;
  --card: #ffffff;
  --line: #d9e8de;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Manrope, sans-serif; background: linear-gradient(180deg, #e9f2ed, #f8fcf9); color: var(--dark); }
.container { width: min(1100px, 94%); margin-inline: auto; }

.site-shell { max-width: 1180px; margin: 0 auto; border-inline: 1px solid var(--line); background: #ffffffd6; box-shadow: 0 0 0 1px #ffffff inset; }
.header { position: sticky; top: 0; z-index: 20; }
.glass { backdrop-filter: blur(12px); background: #ffffffde; border-bottom: 1px solid var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; gap: .8rem; }
.logo { text-decoration: none; font-weight: 800; font-size: 1.15rem; color: var(--dark); display:flex; align-items:center; gap:.55rem; }
.logo img{width:36px;height:36px;border-radius:50%;object-fit:cover;border:1px solid var(--line);}
.nav { display: flex; gap: .9rem; }
.nav a { text-decoration: none; color: #315a45; font-weight: 600; }

.hero { position: relative; min-height: 70vh; display: grid; place-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width:100%; height:100%; object-fit:cover; }
.overlay { position: absolute; inset: 0; background: linear-gradient(120deg, #0a2415bf, #1f8a4980); }
.hero-content { position: relative; color: #fff; padding: 4.5rem 0; text-align: center; }
.pill { display: inline-block; background: #ffffff22; border: 1px solid #ffffff44; border-radius: 999px; padding: .35rem .8rem; font-size: .83rem; }
h1 { font-size: clamp(1.9rem, 6.2vw, 3.5rem); line-height: 1.12; max-width: 900px; margin: .8rem auto; }
.hero p { max-width: 720px; margin-inline: auto; font-size: 1.02rem; }
.actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }

.btn { display: inline-block; text-decoration: none; background: var(--brand); color: #fff; padding: .78rem 1rem; border-radius: .8rem; font-weight: 700; border: 1px solid transparent; }
.btn-light { background: #fff; color: #1a4b2f; }
.btn-dark { background: var(--dark); }

.section { padding: 3.3rem 0; }
.soft { background: #edf7f0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 { font-size: clamp(1.4rem, 4.4vw, 2.2rem); margin-top: 0; text-align: center; }
.muted { color: var(--muted); text-align: center; max-width: 760px; margin: 0 auto 1rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .9rem; }
.card { background: var(--card); padding: 1rem; border: 1px solid var(--line); border-radius: .95rem; text-decoration: none; color: var(--dark); font-weight: 700; box-shadow: 0 8px 18px #1a5f3510; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .85rem; }
.gallery figure{margin:0;background:#fff;border:1px solid var(--line);border-radius:.85rem;overflow:hidden;box-shadow:0 8px 18px #1a5f3510;}
.gallery img { width: 100%; height: 185px; object-fit: cover; display:block; }
.gallery figcaption{padding:.55rem .7rem;font-size:.86rem;color:#385843;font-weight:600;}
.contact-grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: 1.2rem; }
.contact-actions { display: flex; flex-direction: column; gap: .65rem; align-self: start; }
.float-wa { position: fixed; right: .9rem; bottom: .9rem; background: #25d366; color: #fff; text-decoration: none; padding: .82rem .95rem; border-radius: 999px; font-weight: 800; box-shadow: 0 10px 24px #0000002d; }

@media (max-width: 920px) {
  .site-shell { border-inline: none; }
  .nav { display: none; }
  .nav-wrap { padding: .7rem 0; }
  .hero { min-height: 62vh; }
  .hero-content { padding: 4rem 0 3.3rem; }
  .section { padding: 2.4rem 0; }
  .cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(1100px, 92%); }
  .cards, .gallery { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
  .actions { flex-direction: column; }
  h2 { text-align: left; }
  .muted { text-align: left; }
}

.section-cta{margin-top:1rem;}
.small{font-size:.92rem;}

.card{display:flex;align-items:center;gap:.55rem;}
.card-icon{width:1.35rem;height:1.35rem;border-radius:999px;display:inline-grid;place-items:center;background:#e7f4eb;color:#1f8a49;font-weight:800;font-size:.8rem;flex:0 0 1.35rem;}
