:root {
  --bg: #ffffff;
  --text: #101010;
  --muted: #5f6368;
  --line: #e9ecef;
  --green: #28b133;
  --green-dark: #0a7d20;
  --green-soft: #eaf8ec;
  --black: #0a0a0a;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-badge {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
}

.brand-text {
  font-weight: 800;
  font-size: 1rem;
}

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

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--green-soft);
  color: var(--green-dark);
}

.nav-cta {
  background: var(--black);
  color: #fff !important;
}

.hero {
  position: relative;
  padding: 42px 0 56px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  z-index: 0;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: rgba(40, 177, 51, 0.14);
  top: -110px;
  left: -90px;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: rgba(40, 177, 51, 0.1);
  bottom: -120px;
  right: -60px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.termita-grid h2,
.coverage-card h2,
.contact-box h2 {
  margin: 0;
  line-height: 1.05;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  max-width: 9ch;
}

.hero-text {
  margin: 18px 0 0;
  font-size: 1.14rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 58ch;
}

.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 0;
}

.hero-pills span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  background: #fff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 18px 30px rgba(40, 177, 51, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.poster-card {
  position: relative;
  background: linear-gradient(180deg, #101010, #1a1a1a);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(40,177,51,.34), transparent 70%);
  pointer-events: none;
}

.poster-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.quick-strip {
  padding: 0 0 22px;
}

.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-strip article,
.service-card,
.plague-card,
.coverage-card,
.contact-box,
.termita-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(10, 10, 10, 0.05);
}

.quick-strip article {
  padding: 22px;
}

.quick-strip h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.quick-strip p,
.service-card p,
.section-heading p,
.termita-grid p,
.coverage-card p,
.contact-box p,
.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section {
  padding: 38px 0 28px;
}

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

.section-heading h2,
.termita-grid h2,
.coverage-card h2,
.contact-box h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 10px;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.light .section-tag {
  background: rgba(255,255,255,.12);
  color: #b9ffbf;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 28px;
}

.service-card h3 {
  margin: 18px 0 8px;
  font-size: 1.35rem;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
}

.service-card-highlight {
  background: linear-gradient(160deg, #f7fff8, #eef9ef);
  border-color: rgba(40, 177, 51, 0.2);
}

.section-dark {
  background: linear-gradient(135deg, #0b0b0b 0%, #141414 55%, #0f3d17 100%);
  color: #fff;
}

.plagues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plague-card {
  min-height: 128px;
  padding: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.plague-card::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -18px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(40, 177, 51, 0.24);
}

.plague-card span {
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: 1.05rem;
}

.plague-card-accent {
  background: linear-gradient(135deg, rgba(40, 177, 51, .3), rgba(40, 177, 51, .12));
  border-color: rgba(130, 255, 144, 0.28);
}

.termita-block {
  padding-top: 50px;
}

.termita-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.termita-panel {
  padding: 34px;
  border: 2px solid rgba(40,177,51,.18);
  background: linear-gradient(160deg, #ffffff, #f4fff5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}

.termita-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.termita-panel strong {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.coverage-card {
  padding: 30px;
}

.coverage-map {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(40,177,51,.18), rgba(40,177,51,.04)),
    repeating-linear-gradient(90deg, rgba(10,10,10,.06) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(rgba(10,10,10,.06) 0 1px, transparent 1px 46px),
    #f9fbfa;
  border: 1px solid var(--line);
}

.map-decoration {
  position: absolute;
  inset: 12% 12% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,177,51,.3), transparent 70%);
}

.map-content {
  position: absolute;
  inset: auto auto 28px 28px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10,10,10,.06);
  box-shadow: var(--shadow);
}

.map-content span {
  display: block;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.map-content strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.contact-section {
  padding-bottom: 54px;
}

.contact-box {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-info {
  max-width: 440px;
}

.phone-link {
  display: inline-block;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-dark);
  text-decoration: none;
}

.footer {
  background: #0c0c0c;
  color: #fff;
  padding: 28px 0 108px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer h3 {
  margin: 0 0 8px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(40, 177, 51, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .services-grid,
  .plagues-grid,
  .termita-grid,
  .coverage-grid,
  .quick-strip-grid,
  .contact-box,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero h1 {
    max-width: none;
  }

  .contact-box {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .nav a {
    padding: 10px 12px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-actions,
  .hero-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .floating-whatsapp {
    width: 100%;
  }

  .service-card,
  .contact-box,
  .coverage-card,
  .quick-strip article,
  .termita-panel {
    padding: 22px;
  }

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