:root {
  --navy: #0D1B2A;
  --navy-dark: #071018;
  --navy-mid: #162c45;
  --green: #388E3C;
  --green-dark: #2E7D32;
  --green-hover: #4CAF50;
  --green-light: #81C784;
  --gray: #4B5563;
  --gray-light: #F9FAFB;
  --white: #FFFFFF;
  --text: #111827;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: center;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav-right {
  display: flex;
  justify-content: flex-end;
}

.nav-wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.35);
  transition: background 0.4s, box-shadow 0.4s, transform 0.2s;
  white-space: nowrap;
}

.nav-wa-btn:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(56, 142, 60, 0.45);
}

/* Nav WhatsApp button pulse */
@keyframes wa-shake {

  0%,
  100% {
    transform: translateX(0) rotate(0);
  }

  15% {
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    transform: translateX(3px) rotate(2deg);
  }

  45% {
    transform: translateX(-3px) rotate(-1deg);
  }

  60% {
    transform: translateX(2px) rotate(1deg);
  }

  75% {
    transform: translateX(-1px);
  }
}

.nav-wa-btn.urgent {
  background: #dc2626 !important;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.45) !important;
  animation: wa-shake 0.5s ease;
}

.nav-wa-btn:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(56, 142, 60, 0.45);
}

.nav-wa-icon {
  flex-shrink: 0;
}

.nav-wa-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
  display: block;
}

.nav-wa-text {
  line-height: 1.2;
}

.nav-wa-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-wa-text span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

/* ── HERO ── */
#hero {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  background: linear-gradient(145deg, #1a6b1e 0%, #2E7D32 30%, #388E3C 60%, #1b5e20 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

/* Video background */
#hero-video {
  position: absolute;
  inset: 0;
  width: 105%;
  height: 105%;
  object-fit: cover;
  object-position: left top;
  top: -2.5%;
  left: 0;
  z-index: 0;
}

/* Left-side overlay — darker left, fully transparent right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 15, 10, 0.92) 0%, rgba(5, 15, 10, 0.80) 35%, rgba(5, 15, 10, 0.20) 55%, transparent 70%);
  z-index: 1;
}

/* Animated canvas bg */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.hero-glow-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(76, 175, 80, 0.08) 40%, transparent 70%);
  animation: glow-drift-1 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(100, 200, 100, 0.06) 40%, transparent 70%);
  animation: glow-drift-2 10s ease-in-out infinite;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 38%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
  animation: glow-drift-3 6s ease-in-out infinite;
}

@keyframes glow-drift-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-40px, 30px) scale(1.08)
  }
}

@keyframes glow-drift-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(30px, -20px) scale(1.1)
  }
}

@keyframes glow-drift-3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6
  }

  50% {
    transform: translate(20px, 15px) scale(1.15);
    opacity: 1
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* City typewriter */
.city-slot {
  display: inline-block;
  color: white;
  min-width: 2ch;
}

.city-cursor {
  display: inline-block;
  width: 4px;
  height: 0.85em;
  background: white;
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge span {
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4)
  }
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

h1 .accent {
  color: #c8f5c9;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(56, 142, 60, 0.4);
}

.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 142, 60, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--green-hover);
  background: rgba(56, 142, 60, 0.15);
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 32px;
}

.trust-item {
  text-align: center;
}

.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--green);
  line-height: 1;
}

.trust-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HERO URGENCY BOX ── */
.hero-urgency-box {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 380px;
  width: 100%;
}

.hub-green {
  background: var(--green);
  padding: 22px 28px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
}

.hub-dark {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 26px 28px;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hub-red {
  background: #dc2626;
  padding: 22px 28px;
  color: white;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {

  0%,
  100% {
    background: #dc2626
  }

  50% {
    background: #b91c1c
  }
}

.hero-logo-wrap img {
  width: 320px;
  filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.25)) drop-shadow(0 8px 32px rgba(0, 0, 0, 0.2));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* Orbiting insects in hero */
.orbit-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.orbit-pest {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  animation: counter-spin 20s linear infinite;
  filter: grayscale(1) opacity(0.5) brightness(10);
}

@keyframes counter-spin {
  from {
    transform: translateX(-50%) rotate(0deg)
  }

  to {
    transform: translateX(-50%) rotate(-360deg)
  }
}

/* ── GLOBAL SECTION UTILS ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}



/* ── SOLUTION BLOCK ── */
#diferenciais {
  position: relative;
  background: #f0f0f0;
  padding: 100px 40px;
}

.solution-bg-leak {
  position: absolute;
  top: -350px;
  right: 0;
  height: 1400px;
  width: auto;
  z-index: 5;
  pointer-events: none;
}

#diferenciais .section-container {
  position: relative;
  z-index: 10;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 20px;
}

.solution-left h2 em {
  color: var(--green-dark);
  font-style: normal;
}

.solution-left p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.solution-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='14' height='14'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.solution-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.solution-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s;
}

.solution-card:hover {
  transform: translateY(-4px);
}

.solution-card:nth-child(1) {
  grid-column: span 2;
  background: var(--green-dark);
}

.solution-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.solution-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.solution-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ── SERVICES ── */
#services {
  background: var(--gray-light);
  padding: 100px 40px;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  color: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid var(--green);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--green);
  opacity: 0.04;
  border-radius: 50% 0 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 44px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  background: rgba(76, 175, 80, 0.1);
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── AUTHORITY / STATS ── */
#authority {
  background: var(--navy);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

#authority::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: var(--green);
  opacity: 0.04;
  border-radius: 50%;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.authority-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  color: white;
  margin-bottom: 20px;
  line-height: 1.05;
}

.authority-left h2 em {
  color: var(--green);
  font-style: normal;
}

.authority-left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.authority-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.auth-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 600;
}

.auth-badge span {
  color: var(--green);
  font-size: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: background 0.2s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── URGENCY ── */
#urgency {
  background: linear-gradient(135deg, var(--green-dark), #1b5e20);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.urgency-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.urgency-icon {
  font-size: 56px;
  margin-bottom: 16px;
  animation: shake 2s ease-in-out infinite;
}

@keyframes shake {

  0%,
  100% {
    transform: rotate(0)
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-6deg)
  }

  20%,
  40%,
  60%,
  80% {
    transform: rotate(6deg)
  }
}

#urgency h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  color: white;
  line-height: 1;
  margin-bottom: 16px;
}

#urgency p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.urgency-slots {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.slot {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 4px;
  color: white;
  font-size: 15px;
  font-weight: 700;
}

.slot.taken {
  opacity: 0.35;
  text-decoration: line-through;
}

.urgency-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--green-dark);
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.urgency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ── TESTIMONIALS ── */
#depoimentos {
  background: #f8fafc;
  padding: 100px 40px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  color: var(--navy);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 30px;
  font-family: serif;
  font-size: 80px;
  color: var(--green);
  opacity: 0.15;
  line-height: 1;
}

.stars {
  color: #FFB800;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 15px;
}

.author-info strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}

.author-info span {
  font-size: 15px;
  color: var(--gray);
}

/* ── COVERAGE ── */
#coverage {
  background: var(--gray-light);
  padding: 80px 40px;
  text-align: center;
}

#coverage h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--navy);
  margin-bottom: 16px;
}

#coverage>.section-container>p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 40px;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.city-tag {
  background: white;
  border: 2px solid rgba(15, 42, 61, 0.08);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: border-color 0.2s, background 0.2s;
}

.city-tag:hover {
  border-color: var(--green);
  background: rgba(76, 175, 80, 0.05);
}

.coverage-cta {
  margin-top: 40px;
}

.coverage-cta p {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.coverage-cta p em {
  color: var(--green-dark);
  font-style: normal;
}

/* ── FINAL CTA ── */
#cta-final {
  background: var(--navy-dark);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
}

.cta-final-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

#cta-final h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 82px);
  color: white;
  line-height: 1;
  margin-bottom: 16px;
}

#cta-final h2 em {
  color: var(--green);
  font-style: normal;
}

#cta-final p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  margin-bottom: 44px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: #060e14;
  padding: 60px 40px 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo img {
  height: 64px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-about {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--green);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 15px;
}

/* ── COCKROACH ANIMATION ── */
.cockroach-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 500;
  overflow: hidden;
}

.cockroach {
  position: absolute;
  bottom: -18px;
  width: 90px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: auto;
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  user-select: none;
  z-index: 501;
  /* Flip orientation and initial state */
  transform: scaleX(-1);
  /* Frame animation */
  animation: roach-walk-frames 0.4s steps(1) infinite;
  animation-play-state: paused;
  /* Initial position (will be updated by JS) */
  left: -150px;
}

@keyframes roach-walk-frames {
  0% {
    background-image: url('../uploads/img/frames/barata-01.png');
  }

  16.66% {
    background-image: url('../uploads/img/frames/barata-02.png');
  }

  33.33% {
    background-image: url('../uploads/img/frames/barata-03.png');
  }

  50% {
    background-image: url('../uploads/img/frames/barata-04.png');
  }

  66.66% {
    background-image: url('../uploads/img/frames/barata-05.png');
  }

  83.33% {
    background-image: url('../uploads/img/frames/barata-06.png');
  }

  100% {
    background-image: url('../uploads/img/frames/barata-01.png');
  }
}

.cockroach.scared {
  animation: run-away 0.8s ease-in forwards !important;
}

@keyframes run-away {
  0% {
    transform: scaleX(-1) translateX(0);
    opacity: 1;
  }

  100% {
    transform: scaleX(-1) translateX(400px) translateY(-80px) rotate(-20deg);
    opacity: 0;
  }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wa-bubble {
  background: white;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 10px 10px 0 10px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  animation: bob 3s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

.wa-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.wa-btn.urgent {
  background: #ff3b30;
  box-shadow: 0 4px 20px rgba(255, 59, 48, 0.5);
  animation: pulse-red 1s infinite alternate;
}

@keyframes pulse-red {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.5);
  }

  100% {
    transform: scale(1.1);
    box-shadow: 0 4px 30px rgba(255, 59, 48, 0.8);
  }
}

.wa-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 12px 20px;
  }

  nav.scrolled {
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
  }

  #hero {
    padding: 100px 20px 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  h1 {
    font-size: 53px;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-wrap {
    width: 250px;
    height: 250px;
  }

  .hero-logo-wrap img {
    width: 220px;
  }

  .orbit-ring {
    width: 290px;
    height: 290px;
  }

  .solution-grid,
  .authority-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-bg-leak {
    position: static;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    height: auto;
    display: block;
    z-index: auto;
  }

  #hero-video {
    object-position: right bottom;
    width: 115%;
    height: 115%;
    left: -5%;
    top: -10%;
    transform: translateX(40px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }


  #hero,
  #diferenciais,
  #services,
  #authority,
  #urgency,
  #depoimentos,
  #coverage,
  #cta-final {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ── MOBILE MENU (CANVA STYLE) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--navy);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: var(--white);
  z-index: 1003;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid var(--gray-light);
}


.mobile-menu-close {
  background: var(--gray-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
}

.mobile-menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.mobile-menu-section {
  margin-bottom: 32px;
}

.mobile-menu-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 16px;
}

.mobile-menu-links {
  list-style: none;
}

.mobile-menu-links li {
  margin-bottom: 12px;
}

.mobile-menu-links a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s;
}

.mobile-menu-links a:hover {
  color: var(--green);
}

.mobile-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mobile-service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  background: var(--gray-light);
  padding: 12px;
  border-radius: 12px;
  transition: transform 0.2s, background 0.2s;
}

.mobile-service-item:hover {
  background: #eef2f5;
  transform: translateY(-2px);
}

.mobile-service-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.mobile-service-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid var(--gray-light);
}

.mobile-urgent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #dc2626;
  color: white;
  text-decoration: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  animation: wa-shake 2s infinite;
}

.mobile-urgent-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── MOBILE RESPONSIVE FIXES ── */
@media (max-width: 1024px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .nav-logo {
    order: 1;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
    order: 2;
  }
  
  .nav-right {
    display: none;
  }
  
  #hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
    gap: 20px;
  }
  
  .trust-num {
    font-size: 32px;
  }
  
  .trust-label {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 1.1;
  }
  
  .hero-sub {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .section-padding {
    padding: 48px 20px;
  }
  
  .solution-grid, .servicos-header, .regiao-grid, .contato-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .regiao-cities, .solution-list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .regiao-cta-box {
    flex-direction: column;
    padding: 30px 20px;
    margin-top: 0;
    text-align: center;
  }
  
  .hero-btns .btn-primary, .hero-btns .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Fix floating button position on mobile */
  .wa-float {
    bottom: 20px !important;
    right: 20px !important;
  }
  
  .wa-bubble {
    bottom: 85px !important;
    right: 20px !important;
  }
}
