:root {
  --green-900: #063b28;
  --green-800: #075b3a;
  --green-700: #0b7a4b;
  --green-600: #14935d;
  --green-100: #e8f7ef;
  --green-50: #f4fbf7;
  --white: #ffffff;
  --text: #173328;
  --muted: #5f766d;
  --shadow: 0 18px 50px rgba(6, 59, 40, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7, 91, 58, 0.08);
}

.navbar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-900);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green-700);
  color: white;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--green-700);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-700);
  color: white !important;
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 52px auto 24px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: center;
}

.hero-content {
  padding: 60px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 10%, rgba(20, 147, 93, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #ecf9f2 100%);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3 {
  margin-top: 0;
  color: var(--green-900);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-700);
  color: white;
  box-shadow: 0 12px 24px rgba(11, 122, 75, 0.24);
}

.btn-secondary {
  background: white;
  color: var(--green-800);
  border: 1px solid rgba(11, 122, 75, 0.16);
}

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

.wa-icon {
  font-size: 1.1rem;
}

.hero-card {
  min-height: 420px;
  padding: 34px;
  border-radius: 36px;
  background: linear-gradient(160deg, var(--green-800), var(--green-600));
  color: white;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "+";
  position: absolute;
  top: -50px;
  right: -12px;
  font-size: 15rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
}

.hero-card h2,
.hero-card p {
  color: white;
}

.card-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.15);
  font-size: 2.1rem;
  margin-bottom: 20px;
}

.mini-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.mini-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-weight: 700;
}

.quick-info {
  width: min(1160px, calc(100% - 32px));
  margin: 24px auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-info article {
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 35px rgba(6, 59, 40, 0.08);
}

.quick-info span {
  font-size: 1.8rem;
}

.quick-info h3 {
  margin: 12px 0 6px;
}

.quick-info p {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 90px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 26px;
  align-items: stretch;
}

.about-text {
  background: white;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(6, 59, 40, 0.08);
}

.about-text p {
  line-height: 1.78;
  color: var(--muted);
}

.milestone-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--green-900);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.milestone-card h3,
.milestone-card p {
  color: white;
}

.year {
  font-size: 3rem;
  font-weight: 900;
}

.years {
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 900;
  color: #bdf4d3;
}

.review-grid,
.service-grid,
.hours-grid {
  display: grid;
  gap: 20px;
}

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

.review-grid article,
.service-grid article,
.hours-grid article,
.coverage-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(6, 59, 40, 0.08);
}

.review-grid p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

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

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--green-100);
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.coverage-card {
  margin-top: 22px;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 700;
}

.hours-grid {
  grid-template-columns: repeat(2, 1fr);
}

.hours-grid article {
  border-left: 8px solid var(--green-700);
}

.hours-grid p {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-800);
  margin: 8px 0;
}

.location-content {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 36px;
  background: white;
  box-shadow: var(--shadow);
}

.location-address {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.map-wrapper {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(11, 122, 75, 0.12);
}

.cta-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 90px;
  padding: 54px;
  text-align: center;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: white;
  box-shadow: var(--shadow);
}

.cta-section h2,
.cta-section p {
  color: white;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.cta-section p {
  font-size: 1.15rem;
}

.site-footer {
  padding: 42px min(7vw, 90px);
  background: var(--green-900);
  color: rgba(255,255,255,0.8);
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.site-footer h3 {
  color: white;
}

.legal {
  max-width: 520px;
  line-height: 1.6;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.36);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .about-grid,
  .location-content {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 38px 26px;
  }

  .quick-info,
  .review-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    margin-top: 24px;
  }

  .hero-card {
    min-height: 320px;
  }

  .section {
    margin-bottom: 64px;
  }

  .cta-section {
    padding: 36px 22px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
