:root {
  --green: #2f7d5b;
  --green-light: #46b97a;
  --green-dark: #1f5c42;
  --gray: #555;
  --light: #f6fbf8;
  --white: #fff;
  --dark: #1d1d1d;
  --shadow: 0 15px 40px rgba(0,0,0,.08);
  --radius: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

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

.topbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 20px;
}

.nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

section {
  padding: 72px 0;
}

.hero {
  background: linear-gradient(135deg, #f8fffb 0%, #e9f7ef 100%);
}

.hero-grid, .split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tag {
  display: inline-block;
  color: var(--green-dark);
  background: #dff3e8;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--green-dark);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--green-dark);
}

h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 22px;
}

p { color: var(--gray); font-size: 18px; }

.section-subtitle {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.hero-text p {
  font-size: 21px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover { background: var(--green-dark); }

.btn-outline {
  color: var(--green-dark);
  border-color: var(--green);
  background: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
}

.hero-image img, .rounded-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.benefits h2, .light h2, .faq h2 {
  text-align: center;
}

.cards-3, .cards-4, .list-grid {
  display: grid;
  gap: 22px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card, .mini-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.icon {
  font-size: 38px;
  margin-bottom: 12px;
}

.light {
  background: var(--light);
}

.check-list {
  padding: 0;
  list-style: none;
  margin: 24px 0;
}

.check-list li {
  margin: 10px 0;
  color: var(--gray);
  font-size: 18px;
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 10px;
}

.list-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.list-grid p {
  background: var(--white);
  margin: 0;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.mini-card {
  color: var(--green-dark);
  font-weight: 800;
}

.video-wrap, .map-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
}

.video-wrap iframe {
  width: 100%;
  min-height: 460px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.faq details {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin: 14px auto;
  max-width: 900px;
  padding: 20px 24px;
}

.faq summary {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.final-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  text-align: center;
  color: var(--white);
}

.final-cta h2, .final-cta p {
  color: var(--white);
}

.footer {
  background: #143d2d;
  color: var(--white);
  padding: 32px 0;
  text-align: center;
}

.footer p {
  color: rgba(255,255,255,.88);
  margin: 6px 0;
  font-size: 15px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  z-index: 99;
}

@media (max-width: 860px) {
  .hero-grid, .split-grid, .cards-3, .cards-4, .list-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    padding: 14px 0;
  }

  section {
    padding: 52px 0;
  }

  .video-wrap iframe {
    min-height: 520px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    text-align: center;
    width: 100%;
  }
}


.video-frame video {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: cover;
  background: #000;
  border-radius: var(--radius);
}

@media (max-width: 980px) {
  .video-frame video {
    height: 620px;
  }
}

@media (max-width: 620px) {
  .video-frame video {
    height: 540px;
  }
}


.video-wrap video {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: cover;
  background: #000;
  border-radius: var(--radius);
}

@media (max-width: 860px) {
  .video-wrap video {
    height: 540px;
  }
}
