:root {
  --bg: #f5f7f1;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.1);
  --text: #0d2618;
  --text-soft: #5b6d61;
  --hero: #204726;
  --hero-deep: #17361d;
  --hero-line: rgba(255, 255, 255, 0.12);
  --accent: #ffad1f;
  --accent-deep: #f59b00;
  --success: #00d757;
  --success-deep: #00be4c;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 54, 29, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--hero);
  font-size: 1.5rem;
  font-weight: 800;
}

.brand-name {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.desktop-nav,
.header-cta,
.mobile-nav {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 0 auto;
}

.mobile-nav {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  background:
    linear-gradient(180deg, rgba(26, 61, 26, 0.96) 0%, rgba(26, 61, 26, 0.92) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 173, 31, 0.12), transparent 25%);
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 173, 31, 0.16), transparent 28%),
    linear-gradient(180deg, var(--hero) 0%, var(--hero-deep) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 72px);
  align-items: center;
  padding: 24px 0 28px;
}

.hero-copy {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 173, 31, 0.18);
  color: #ffca68;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.9rem, 9vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-lead {
  margin: 20px auto 0;
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button-primary {
  width: 100%;
  background: var(--success);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 215, 87, 0.26);
}

.button-primary:hover {
  background: var(--success-deep);
}

.button-secondary {
  width: 100%;
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.wa-icon,
.floating-whatsapp {
  display: inline-grid;
  place-items: center;
}

.wa-icon svg,
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.hero-stats article {
  text-align: center;
}

.stat-icon {
  display: block;
  margin-bottom: 8px;
  color: #ffc34d;
  font-size: 1.2rem;
}

.hero-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-stats span:last-child {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
}

.hero-reviews {
  margin-top: 26px;
}

.hero-rating,
.summary-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-rating strong,
.summary-rating strong {
  color: #ffffff;
  font-size: 1.3rem;
}

.rating-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.google-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #4285f4;
  font-weight: 800;
}

.google-mark-small {
  width: 22px;
  height: 22px;
  font-size: 0.76rem;
}

.stars {
  color: #ffc34d;
  letter-spacing: 0.12em;
  font-size: 0.94rem;
}

.review-preview,
.review-card,
.service-card,
.cta-box {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-preview {
  margin-top: 16px;
  padding: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--hero-line);
  backdrop-filter: blur(10px);
}

.review-head,
.review-head-full,
.review-person {
  display: flex;
  align-items: center;
}

.review-head {
  gap: 12px;
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
}

.review-head strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.review-preview p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.reviews-section,
.services-section,
.cta-section {
  padding: 72px 0;
}

.reviews-section {
  background: #eef2eb;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-tag {
  margin: 0 0 14px;
  color: #2d6e37;
  font-size: 0.92rem;
  font-weight: 700;
}

.section-heading h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p,
.cta-box p,
.reviews-summary p,
.review-card p,
.service-body p,
.footer-brand p,
.footer-bottom p {
  color: var(--text-soft);
  line-height: 1.7;
}

.section-heading p:last-child,
.cta-box p {
  margin-top: 14px;
}

.reviews-summary {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 28px;
}

.summary-rating strong {
  color: var(--text);
}

.review-grid,
.service-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.review-card {
  padding: 24px;
  background: var(--surface);
}

.review-head-full {
  justify-content: space-between;
  gap: 16px;
}

.review-person {
  gap: 12px;
}

.review-person strong {
  color: var(--text);
}

.review-person small {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
}

.review-card .stars {
  display: inline-block;
  margin-top: 16px;
}

.review-card p {
  margin: 16px 0 0;
}

.reviews-link-wrap {
  margin: 24px 0 0;
  text-align: center;
}

.reviews-link {
  color: #2d6e37;
  font-weight: 700;
}

.services-section {
  background: var(--bg);
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
}

.service-visual {
  display: grid;
  align-content: space-between;
  justify-items: start;
  position: relative;
  min-height: 170px;
  padding: 22px;
  background: linear-gradient(135deg, #355f36 0%, #203f25 100%);
  isolation: isolate;
}

.service-business {
  background: linear-gradient(135deg, #415f2d 0%, #254322 100%);
}

.service-garden {
  background: linear-gradient(135deg, #2f6942 0%, #1f4533 100%);
}

.service-photo,
.service-overlay {
  position: absolute;
  inset: 0;
}

.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-photo-business {
  object-position: center top;
}

.service-photo-logo {
  object-fit: contain;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.service-overlay {
  background:
    linear-gradient(180deg, rgba(16, 38, 20, 0.08) 0%, rgba(16, 38, 20, 0.74) 100%),
    linear-gradient(135deg, rgba(53, 95, 54, 0.22) 0%, rgba(32, 63, 37, 0.68) 100%);
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-body h3,
.pests-panel h3,
.site-footer h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.service-lead {
  margin: 12px 0 0;
  color: var(--hero);
  font-weight: 700;
}

.service-body p {
  margin: 10px 0 0;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.service-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf4ea;
  color: #27492a;
  font-size: 0.85rem;
  font-weight: 600;
}

.pests-panel {
  margin-top: 26px;
  padding: 28px 22px;
  border-radius: 28px;
  background: var(--hero);
  color: #ffffff;
}

.pest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.pest-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.cta-section {
  background: var(--hero);
}

.cta-box {
  padding: 36px 24px;
  text-align: center;
  background: linear-gradient(180deg, #234e29 0%, #17361d 100%);
  color: #ffffff;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
}

.cta-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.site-footer {
  background: #17361d;
  color: #ffffff;
}

.footer-grid {
  padding: 48px 0 32px;
}

.footer-brand p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  padding: 20px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--success);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 215, 87, 0.34);
}

@media (min-width: 760px) {
  .review-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .header-row {
    grid-template-columns: auto 1fr auto auto;
    gap: 24px;
  }

  .desktop-nav {
    display: inline-flex;
    justify-self: center;
    gap: 28px;
  }

  .desktop-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--success);
    color: #ffffff;
    font-weight: 700;
  }

  .menu-toggle {
    display: none;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero-lead {
    max-width: 34ch;
  }

  .button-primary {
    width: auto;
    min-width: 320px;
  }

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

  .pest-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
