:root {
  --bg: #f6f4ef;
  --text: #17201b;
  --muted: #66706a;
  --green: #244536;
  --green-dark: #13261d;
  --green-soft: #dfe8df;
  --card: #ffffff;
  --line: #dde3dd;
  --accent: #9f7a3f;
  --shadow: 0 20px 60px rgba(19, 38, 29, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: white;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -1px;
}

.brand strong {
  display: block;
  font-size: 15px;
}

.brand span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-contact {
  min-width: 132px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-contact span {
  font-size: 12px;
  color: var(--muted);
}

.header-contact a {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
}

.header-mail {
  display: none;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  margin-top: 3px;
}

.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.menu-button {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: var(--green);
}

.contact-dropdown {
  position: relative;
  flex-shrink: 0;
}

.contact-toggle {
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 100;
}

.contact-menu.active {
  display: grid;
  gap: 6px;
}

.contact-menu a {
  display: block;
  padding: 14px;
  border-radius: 16px;
  transition: 0.2s ease;
}

.contact-menu a:hover {
  background: var(--green-soft);
}

.contact-menu strong {
  display: block;
  color: var(--green);
  font-size: 15px;
  margin-bottom: 3px;
}

.contact-menu span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* HERO */

.hero {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  min-height: 78vh;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  margin-bottom: 12px;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -4px;
}

.hero-text {
  max-width: 640px;
  margin-top: 28px;
  font-size: 20px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--green);
  color: white;
}

.btn.primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.btn.secondary:hover {
  background: white;
  transform: translateY(-2px);
}

.btn.large {
  padding: 18px 26px;
  font-size: 17px;
}

.trust-row {
  margin-top: 46px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-row div {
  min-width: 140px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.trust-row strong {
  display: block;
  color: var(--green);
  font-size: 24px;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
}

/* HERO CARD */

.hero-card {
  position: relative;
  background: var(--green-dark);
  color: white;
  padding: 34px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -80px;
  bottom: -80px;
}

.status-dot {
  width: 14px;
  height: 14px;
  background: #7ee081;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px rgba(126, 224, 129, 0.14);
}

.hero-card h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.hero-card p {
  color: #cbd8cf;
  margin-bottom: 24px;
}

.hero-card ul {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-card li {
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 14px;
}

.zone-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zone-label {
  color: #7ee081 !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px !important;
}

.zone-card h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
}

.zone-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.zone-item {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}

.zone-item:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.zone-item span {
  display: block;
  color: white;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 4px;
}

.zone-item small {
  display: block;
  color: #cbd8cf;
  font-size: 14px;
}

.zone-note {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  margin-bottom: 0 !important;
  color: #cbd8cf;
  font-size: 15px;
}
/* HIGHLIGHTS */

.highlights-bar {
  width: min(100% - 48px, 1160px);
  margin: -30px auto 40px;
  padding: 28px;
  background: var(--green-dark);
  color: white;
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  box-shadow: var(--shadow);
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(126, 224, 129, 0.14);
  color: #7ee081;
  font-weight: 900;
  font-size: 22px;
  flex-shrink: 0;
}

.highlight-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.highlight-item p {
  color: #cbd8cf;
  font-size: 15px;
}

/* SECTIONS */

.section,
.split-section,
.contact-section,
.coverage-section {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-header h2,
.split-section h2,
.contact-section h2,
.coverage-section h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.section-header p,
.split-section p,
.contact-section p,
.coverage-section p {
  color: var(--muted);
  font-size: 18px;
}

/* CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(19, 38, 29, 0.06);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--green);
}

.card p {
  color: var(--muted);
}

/* SPLIT */

.split-section {
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-list span {
  color: var(--accent);
  font-weight: 800;
}

/* COVERAGE */

.coverage-section {
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-tags span {
  padding: 12px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 700;
}

/* DARK SECTION */

.dark {
  width: 100%;
  max-width: none;
  background: var(--green-dark);
  color: white;
}

.dark .section-header {
  width: min(100% - 48px, 1160px);
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.dark .section-header p {
  color: #cbd8cf;
}

.process {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px;
}

.process strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: white;
  color: var(--green);
  border-radius: 50%;
  margin-bottom: 24px;
}

.process h3 {
  margin-bottom: 10px;
}

.process p {
  color: #cbd8cf;
}

/* CONTACT */

.contact-section {
  padding: 90px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-links a {
  color: var(--green);
  font-weight: 800;
}

/* FOOTER */

.footer {
  padding: 30px 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--green);
  font-weight: 700;
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* CUCARACHA FLOTANTE */

.roach {
  position: fixed;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  z-index: 40;
  pointer-events: none;
  opacity: 0.72;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transform-origin: center center;
  will-change: transform;
}

.roach svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.roach-fill {
  fill: #050505;
}

.roach-line {
  fill: none;
  stroke: #050505;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roach-cut {
  fill: none;
  stroke: #f6f4ef;
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.82;
}

.roach.walking .roach-body-group {
  animation: roachBob 0.18s infinite alternate ease-in-out;
}

.roach.walking .leg {
  transform-box: fill-box;
  transform-origin: center;
}

.roach.walking .leg-a {
  animation: legSwingA 0.12s infinite alternate ease-in-out;
}

.roach.walking .leg-b {
  animation: legSwingB 0.12s infinite alternate ease-in-out;
}

.roach.walking .antenna {
  animation: antennaWiggle 0.25s infinite alternate ease-in-out;
}

.contact-dropdown {
  position: relative;
}

.contact-toggle {
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 260px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 80;
}

.contact-menu.active {
  display: grid;
  gap: 6px;
}

.contact-menu a {
  padding: 14px;
  border-radius: 16px;
  transition: 0.2s ease;
}

.contact-menu a:hover {
  background: var(--green-soft);
}

.contact-menu strong {
  display: block;
  color: var(--green);
  font-size: 15px;
  margin-bottom: 3px;
}

.contact-menu span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

@keyframes roachBob {
  from {
    transform: translateY(-0.6px);
  }
  to {
    transform: translateY(0.8px);
  }
}

@keyframes legSwingA {
  from {
    transform: translateY(-0.5px) rotate(-3deg);
  }
  to {
    transform: translateY(0.5px) rotate(3deg);
  }
}

@keyframes legSwingB {
  from {
    transform: translateY(0.5px) rotate(3deg);
  }
  to {
    transform: translateY(-0.5px) rotate(-3deg);
  }
}

@keyframes antennaWiggle {
  from {
    transform: rotate(-1.5deg);
  }
  to {
    transform: rotate(1.5deg);
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .navbar {
    width: min(100% - 40px, 1320px);
  }

  .menu-button {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: 20px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    margin-left: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    width: min(100% - 48px, 1240px);
    grid-template-columns: 1fr 0.85fr;
    padding-top: 60px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .section,
  .split-section,
  .contact-section,
  .coverage-section {
    width: min(100% - 32px, 1160px);
  }

  .highlights-bar {
    width: min(100% - 32px, 1160px);
    grid-template-columns: 1fr;
    margin: 0 auto 40px;
  }

  .split-section,
  .coverage-section,
  .contact-section {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact-section {
    text-align: left;
  }

  .process {
    width: min(100% - 32px, 1160px);
    grid-template-columns: 1fr;
  }

  .roach {
    width: 22px;
    height: 22px;
    opacity: 0.6;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-row strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.1;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 15px;
  }
}