:root {
  --ink: #18201c;
  --muted: #657169;
  --line: #e4ded1;
  --paper: #f6f1e8;
  --white: #ffffff;
  --black: #080807;
  --black-soft: #151611;
  --green: #334f3f;
  --green-dark: #14251e;
  --green-mid: #3f5d4b;
  --green-soft: #4e6b56;
  --gold: #b98b3a;
  --gold-soft: #dcc28a;
  --cream: #fbf8f1;
  --sage: #dce4d8;
  --whatsapp: #2f8f58;
  --whatsapp-dark: #17633f;
  --sand: #ede3d2;
  --shadow: 0 24px 70px rgba(24, 32, 28, .14);
  --soft-shadow: 0 16px 45px rgba(24, 32, 28, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(220, 194, 138, .22), transparent 34rem),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 42%, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 8, 7, .94);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.phone-link {
  font-weight: 800;
  color: var(--white);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 820;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ead4a0 0%, var(--gold) 100%);
  color: #1b2119;
  box-shadow: 0 18px 36px rgba(91, 65, 26, .22);
}

.btn-dark {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--black-soft) 100%);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(18, 43, 34, .22);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .42);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(18, 140, 126, .28);
  text-shadow: 0 1px 1px rgba(0, 0, 0, .18);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, var(--whatsapp-dark) 0%, var(--green-dark) 100%);
}

.hero {
  min-height: calc(86svh - 72px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image, url("assets/parcela-campo-1.jpeg")) center 48% / cover no-repeat;
  transform: scale(1.015);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 24, 18, .88) 0%, rgba(11, 24, 18, .64) 44%, rgba(11, 24, 18, .18) 100%),
    linear-gradient(0deg, rgba(11, 24, 18, .76) 0%, rgba(11, 24, 18, .08) 48%);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: end;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  border: 1px solid rgba(220, 194, 138, .46);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .92);
  background: rgba(20, 37, 30, .28);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 790px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-facts {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.fact {
  min-height: 82px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.fact span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.fact strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
  line-height: 1.1;
}

.lead-card {
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.lead-card-header {
  padding: 22px 24px 18px;
  background:
    linear-gradient(135deg, rgba(220, 194, 138, .2), rgba(255, 255, 255, .82)),
    var(--cream);
  border-bottom: 1px solid rgba(185, 139, 58, .18);
}

.lead-card-header span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.price {
  margin-top: 6px;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  color: var(--green-dark);
}

.lead-card-body {
  padding: 22px 24px 24px;
}

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

.finance-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.check {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(49, 91, 67, .12);
  color: var(--green);
  font-weight: 950;
  flex-shrink: 0;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: rgba(255, 255, 255, .74);
  border-top: 1px solid rgba(228, 222, 209, .74);
  border-bottom: 1px solid rgba(228, 222, 209, .54);
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit {
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--cream));
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
}

.benefit::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.benefit b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.benefit p {
  margin: 0;
  color: var(--muted);
}

.carousel-shell {
  display: block;
}

.carousel-stage {
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--sage);
}

.carousel-stage {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide figcaption {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 999px;
  background: rgba(20, 37, 30, .72);
  color: var(--white);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.carousel-arrow:hover {
  background: rgba(8, 8, 7, .9);
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow.prev {
  left: 18px;
}

.carousel-arrow.next {
  right: 18px;
}

.carousel-panel {
  margin-top: 12px;
}

.carousel-info {
  display: none;
}

.carousel-info span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.carousel-info strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.carousel-info p {
  margin: 10px 0 0;
  color: var(--muted);
}

.carousel-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.carousel-thumb {
  flex: 0 0 112px;
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--sage);
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  font: inherit;
  font-weight: 850;
  scroll-snap-align: start;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.carousel-thumb:hover,
.carousel-thumb.is-active {
  border-color: rgba(185, 139, 58, .58);
  box-shadow: 0 12px 25px rgba(24, 32, 28, .16);
  transform: translateY(-1px);
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  background: var(--sage);
}

.carousel-thumb span {
  display: none;
}

.availability-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: start;
}

.plan-card,
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.plan-card img {
  width: 100%;
  height: auto;
  background: var(--cream);
}

.media-caption {
  padding: 17px 19px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  border-top: 1px solid rgba(228, 222, 209, .9);
  background: var(--cream);
}

.video-frame {
  position: relative;
  background: var(--black-soft);
}

.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--black-soft);
}

.price-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.price-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .84);
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.price-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .86);
}

.price-dot.green { background: var(--green); }
.price-dot.yellow { background: var(--gold-soft); }
.price-dot.orange { background: var(--gold); }
.price-dot.lime { background: #8ea078; }
.price-dot.purple { background: var(--black-soft); }

.details-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.highlight-panel {
  position: sticky;
  top: 96px;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(220, 194, 138, .1), transparent 42%),
    linear-gradient(135deg, var(--green-dark) 0%, #20392e 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.highlight-panel h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 33px;
  font-weight: 500;
  line-height: 1.08;
}

.highlight-panel p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .78);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.mini-stat {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .075);
}

.mini-stat span {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.1;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features li {
  min-height: 74px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  color: var(--muted);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(24, 32, 28, .045);
}

.location-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.map-card {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  border: 1px solid rgba(49, 91, 67, .2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(23, 47, 37, .08), rgba(198, 154, 69, .12)),
    var(--sage);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.92) contrast(1.02);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23, 47, 37, .18) 0%, rgba(23, 47, 37, 0) 26%),
    linear-gradient(0deg, rgba(23, 47, 37, .2) 0%, rgba(23, 47, 37, 0) 32%);
}

.map-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background: rgba(20, 37, 30, .88);
  color: var(--white);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
}

.map-pin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .24);
}

.map-label strong {
  display: block;
  line-height: 1.1;
  font-size: 17px;
}

.map-label span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 750;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.coordinates {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: var(--muted);
  font-weight: 750;
  box-shadow: 0 12px 30px rgba(24, 32, 28, .055);
}

.coordinates strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.routes {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
}

.route {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}

.route strong {
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.nearby-map-section {
  padding-top: 0;
}

.nearby-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
}

.osm-map {
  position: relative;
  height: 680px;
  overflow: hidden;
  border: 1px solid rgba(49, 91, 67, .18);
  border-radius: 8px;
  background: var(--sage);
  box-shadow: var(--shadow);
  z-index: 1;
}

.osm-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 450;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
  background:
    linear-gradient(180deg, rgba(23, 47, 37, .08) 0%, rgba(23, 47, 37, 0) 22%),
    linear-gradient(0deg, rgba(23, 47, 37, .08) 0%, rgba(23, 47, 37, 0) 20%);
}

.leaflet-container {
  position: relative;
  overflow: hidden;
  background: var(--sage);
  outline-offset: 1px;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
  margin: 10px;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-control-zoom a {
  width: 30px;
  height: 30px;
  display: block;
  border-bottom: 1px solid #ccc;
  background: #fff;
  color: #1f332a;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.leaflet-control-zoom a:first-child {
  border-radius: 4px 4px 0 0;
}

.leaflet-control-zoom a:last-child {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}

.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #fff;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  transform: rotate(45deg);
}

.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 8px 0 0;
  color: #6b756e;
  text-decoration: none;
  font-weight: 800;
  z-index: 2;
}

.leaflet-tile {
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-container img,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}

.map-services-panel {
  display: grid;
  gap: 9px;
  align-content: start;
  max-height: 680px;
  overflow: auto;
  padding-right: 4px;
}

.service-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  width: 100%;
  min-height: 66px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  appearance: none;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 26px rgba(24, 32, 28, .05);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-card:hover,
.service-card.is-active {
  border-color: rgba(185, 139, 58, .55);
  box-shadow: 0 16px 34px rgba(24, 32, 28, .12);
  transform: translateY(-1px);
}

.service-card .service-icon,
.leaflet-marker-icon.map-marker .marker-badge {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(20, 40, 30, .24);
}

.service-card .service-icon {
  width: 38px;
  height: 38px;
}

.service-card .service-icon svg,
.marker-badge svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
}

.service-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.service-card.primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, .14);
}

.service-card.primary .service-icon,
.leaflet-marker-icon.map-marker.primary .marker-badge {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--green-dark);
}

.service-card.primary strong {
  color: var(--white);
}

.service-card.primary span {
  color: rgba(255, 255, 255, .76);
}

.leaflet-marker-icon.map-marker {
  width: 38px !important;
  height: 38px !important;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.leaflet-marker-icon.map-marker .marker-badge {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, .88);
}

.service-card[data-service="health"] .service-icon,
.leaflet-marker-icon.map-marker.health .marker-badge {
  background: var(--green-dark);
}

.service-card[data-service="education"] .service-icon,
.leaflet-marker-icon.map-marker.education .marker-badge {
  background: var(--green-mid);
}

.service-card[data-service="market"] .service-icon,
.leaflet-marker-icon.map-marker.market .marker-badge {
  background: var(--green);
}

.service-card[data-service="hardware"] .service-icon,
.leaflet-marker-icon.map-marker.hardware .marker-badge {
  background: var(--gold);
  color: var(--black);
}

.service-card[data-service="police"] .service-icon,
.leaflet-marker-icon.map-marker.police .marker-badge {
  background: var(--black-soft);
}

.service-card[data-service="road"] .service-icon,
.leaflet-marker-icon.map-marker.road .marker-badge {
  background: var(--black-soft);
}

.service-card[data-service="nature"] .service-icon,
.leaflet-marker-icon.map-marker.nature .marker-badge {
  background: var(--green-soft);
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20, 40, 30, .2);
}

.leaflet-popup-content {
  margin: 13px 15px;
  color: var(--muted);
  font-family: inherit;
  line-height: 1.35;
}

.leaflet-popup-content strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.leaflet-control-attribution {
  font-size: 10px;
}

.cta {
  padding: 76px 0;
  background:
    linear-gradient(135deg, rgba(220, 194, 138, .12), transparent 38%),
    linear-gradient(135deg, var(--black) 0%, var(--green-dark) 58%, #263f34 100%);
  color: var(--white);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

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

.cta p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

footer {
  padding: 28px 0 96px;
  background: var(--black);
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 26px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 75;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  border: 4px solid rgba(255, 255, 255, .34);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .38);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, background .35s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 2px solid var(--whatsapp);
  border-radius: 50%;
  opacity: 0;
  animation: whatsapp-wave 2.2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-6px) rotate(4deg);
  background: linear-gradient(135deg, var(--whatsapp-dark) 0%, var(--green-dark) 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}

.whatsapp-float img {
  width: 52%;
  height: auto;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .28));
}

@keyframes whatsapp-wave {
  0% {
    opacity: .55;
    transform: scale(.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .details-layout,
  .location-band,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 54px;
  }

  .lead-card,
  .highlight-panel {
    max-width: 620px;
  }

  .highlight-panel {
    position: static;
  }

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

  .availability-layout {
    grid-template-columns: 1fr;
  }

  .nearby-map-layout {
    grid-template-columns: 1fr;
  }

  .carousel-stage,
  .map-card {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .carousel-panel {
    margin-top: 10px;
  }

  .carousel-thumbs {
    gap: 8px;
  }

  .carousel-thumb {
    flex-basis: 92px;
  }

  .carousel-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }

  .carousel-thumb span {
    display: none;
  }

  .price-legend {
    grid-template-columns: 1fr;
  }

  .osm-map {
    height: 560px;
  }

  .map-services-panel {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 62px;
  }

  .brand span,
  .phone-link,
  .nav .btn-outline {
    display: none;
  }

  .nav-actions .btn {
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 58px 0 30px;
  }

  .hero::before {
    background-position: center top;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(9, 25, 17, .92) 0%, rgba(9, 25, 17, .66) 60%, rgba(9, 25, 17, .36) 100%);
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions,
  .quick-facts,
  .benefit-grid,
  .features,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .section {
    padding: 56px 0;
  }

  .price {
    font-size: 34px;
  }

  .route {
    display: grid;
  }

  .route strong {
    text-align: left;
  }

  .location-band {
    gap: 26px;
  }

  .map-card {
    aspect-ratio: 1 / 1.12;
  }

  .map-label {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 11px;
  }

  .map-pin {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .osm-map {
    height: 500px;
  }

  .carousel-slide figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    left: auto;
    right: 16px;
    bottom: 16px;
    border-width: 3px;
  }
}
