:root {
  --green: #178546;
  --green-dark: #0f6031;
  --green-soft: #edf9f1;
  --white: #ffffff;
  --text: #173126;
  --muted: #5d7166;
  --border: #dcecdf;
  --shadow: 0 16px 40px rgba(23, 133, 70, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  padding: 40px 0 28px;
  background:
    radial-gradient(circle at left top, rgba(23, 133, 70, 0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8fffb 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 36px;
  align-items: center;
}
.logo-wrap {
  background: var(--white);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.logo {
  width: 100%;
  border-radius: 18px;
}
.kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
}
h1, h2, h3 { margin: 0; }
h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}
.lead {
  margin: 16px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
}
.text {
  margin: 16px 0 0;
  max-width: 640px;
  line-height: 1.7;
  color: var(--muted);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid var(--border);
}
.section { padding: 34px 0; }
.section-title { margin-bottom: 22px; }
.section-title h2, .info-box h2, .band h2 { font-size: clamp(1.7rem, 2.6vw, 2.5rem); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card, .info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card-featured {
  background: linear-gradient(180deg, #ffffff 0%, #f1fbf4 100%);
}
.pill {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
  border-radius: 999px;
  font-size: 12px;
}
.card h3 { font-size: 1.35rem; }
.small {
  margin: 12px 0 0;
  color: var(--muted);
}
.alt-space { margin-top: 18px; }
.price {
  margin: 8px 0 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
}
.band {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
}
.band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.band p { margin: 0; line-height: 1.6; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.info-box p {
  margin: 12px 0 0;
  line-height: 1.7;
  color: var(--muted);
}
.info-box strong { color: var(--text); }
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: var(--green);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .hero-grid, .cards, .info-grid, .band-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .band-inner { gap: 12px; }
}
