/* ==========================================================
   DIVIREDE – Controle de Pragas & Redes de Proteção
   Design System Avançado & Premium 2026
   Divinópolis - MG
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Cores Principais da Marca */
  --brand-red: #E51A24;
  --brand-red-light: #FF3B43;
  --brand-red-dark: #B80D15;
  --brand-red-glow: rgba(229, 26, 36, 0.28);
  --brand-red-subtle: rgba(229, 26, 36, 0.08);

  /* Acentos de Conversão (WhatsApp / Sucesso) */
  --wa-green: #25D366;
  --wa-green-dark: #128C7E;
  --wa-green-glow: rgba(37, 211, 102, 0.35);

  /* Modo Escuro / High-Tech Obsidian */
  --bg-dark: #0A0E17;
  --bg-dark-card: #111726;
  --bg-dark-card-hover: #172033;
  --bg-dark-border: rgba(255, 255, 255, 0.08);

  /* Superfícies Claras e Neutras */
  --bg-body: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F1F5F9;
  --bg-surface-subtle: #E2E8F0;

  /* Tipografia */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Fontes */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Bordas e Raios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Sombras Premium Multicamadas */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 30px 60px -12px rgba(15, 23, 42, 0.22);
  --shadow-red: 0 10px 30px -5px rgba(229, 26, 36, 0.38);
  --shadow-wa: 0 10px 30px -5px rgba(37, 211, 102, 0.42);

  /* Transições Suaves */
  --tr-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-height: 82px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--tr-fast);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

.container {
  width: min(1240px, 100% - 2.8rem);
  margin-inline: auto;
}

/* Utilitário de Acessibilidade & SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------- Tipografia & Títulos ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

p {
  color: var(--text-muted);
}

.text-gradient-red {
  background: linear-gradient(135deg, var(--brand-red-light) 0%, var(--brand-red) 50%, #FFA8AC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Seções e Cabeçalhos de Seção ---------- */
.section {
  padding: clamp(4rem, 8vw, 6.8rem) 0;
  position: relative;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 3.2rem;
  text-align: center;
  position: relative;
}

.section-header.text-left {
  text-align: left;
  margin-inline: 0;
}

.section-header p {
  font-size: 1.08rem;
  margin-top: 0.9rem;
  color: var(--text-muted);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--brand-red-subtle);
  color: var(--brand-red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(229, 26, 36, 0.16);
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(229, 26, 36, 0.08);
}

.section-tag.light-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.section-header.light h2 {
  color: var(--text-white);
}

.section-header.light p {
  color: var(--text-light);
}

/* ---------- Botões Premium ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast);
  text-align: center;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-22deg);
  transition: 0.6s ease;
  z-index: -1;
}

.btn:hover::after {
  left: 140%;
}

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

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

.btn-red {
  background: linear-gradient(135deg, var(--brand-red-light) 0%, var(--brand-red) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  box-shadow: 0 14px 32px -4px rgba(229, 26, 36, 0.5);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2CE66E 0%, var(--wa-green) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-wa);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
  box-shadow: 0 14px 34px -4px rgba(37, 211, 102, 0.55);
}

.btn-white {
  background: #FFFFFF;
  color: var(--brand-red-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: #F8FAFC;
  color: var(--brand-red);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--bg-dark);
  border-color: #FFFFFF;
}

.btn-outline-red {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: transparent;
}

.btn-outline-red:hover {
  background: var(--brand-red);
  color: #FFFFFF;
  box-shadow: var(--shadow-red);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.35);
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.86rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================
   HEADER MODERNO COM GLASSMORPHISM
   ========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: all var(--tr-normal);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  height: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-logo img {
  height: 60px;
  width: auto;
  transition: var(--tr-fast);
}

.site-header.scrolled .header-logo img {
  height: 42px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.main-nav a {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-red);
  border-radius: var(--radius-full);
  transition: width var(--tr-fast);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* ---------- Dropdown de Serviços ---------- */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-arrow {
  font-size: 0.72rem;
  transition: transform var(--tr-fast);
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.65rem;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--tr-fast), transform var(--tr-fast), visibility var(--tr-fast);
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem !important;
  font-weight: 600;
  color: var(--text-main) !important;
  padding: 0.65rem 0.95rem !important;
  border-radius: var(--radius-md);
  transition: all var(--tr-fast);
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a i {
  color: var(--brand-red);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  transition: transform var(--tr-fast);
}

.dropdown-menu a:hover {
  background: var(--bg-surface-alt);
  color: var(--brand-red) !important;
  transform: translateX(4px);
}

.dropdown-menu a:hover i {
  transform: scale(1.15);
}

.nav-mobile-contacts {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  background: var(--bg-surface-alt);
  padding: 0.4rem 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  border: 1px solid var(--bg-surface-subtle);
  transition: var(--tr-fast);
}

.header-phone-badge:hover {
  background: #FFFFFF;
  color: var(--brand-red);
  border-color: rgba(229, 26, 36, 0.2);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 480px) {
  .header-phone-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }
}
.header-phone-badge i {
  color: var(--brand-red);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-alt);
  position: relative;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: var(--tr-fast);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--tr-fast);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================
   BANNER PRINCIPAL COMPLETO (FIT PERFEITO SEM CORTES)
   ========================================================== */
.banner-hero-full {
  width: 100%;
  background: #0A0E17;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.banner-hero-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
  display: block;
}

.banner-hero-link {
  display: block;
  width: 100%;
  position: relative;
  line-height: 0;
  cursor: pointer;
  transition: opacity var(--tr-fast);
}

.banner-hero-link picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.banner-hero-link:hover {
  opacity: 0.98;
}

.banner-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

/* ==========================================================
   HERO SECTION - CINEMATOGRÁFICO & HIGH-IMPACT
   ========================================================== */
.hero {
  position: relative;
  min-height: auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 4.5rem;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, #1F293D 0%, var(--bg-dark) 60%);
  overflow: hidden;
  color: var(--text-white);
}

.hero-mesh-glow {
  position: absolute;
  top: -20%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 26, 36, 0.28) 0%, rgba(229, 26, 36, 0) 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}

.hero-mesh-glow-2 {
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(10, 14, 23, 0.94) 0%, rgba(10, 14, 23, 0.82) 100%), url('../images/fumace-calcada.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.4rem;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--wa-green);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  background-color: var(--wa-green);
  border-radius: 50%;
  animation: pulseRadar 1.8s infinite;
}

@keyframes pulseRadar {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

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

.hero h1 {
  color: var(--text-white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.14;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: #E2E8F0;
}

.hero-checks li i {
  color: var(--brand-red-light);
  font-size: 1.1rem;
}

/* Card Visual Flutuante do Hero */
.hero-visual-card {
  position: relative;
  background: rgba(17, 23, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.55);
}

.hero-visual-card img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  background: rgba(10, 14, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-xl);
  animation: floatSmooth 4s ease-in-out infinite;
}

.badge-top {
  top: -20px;
  right: -15px;
}

.badge-bottom {
  bottom: -20px;
  left: -15px;
  animation-delay: -2s;
}

.hero-floating-badge .badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-icon.red {
  background: rgba(229, 26, 36, 0.18);
  color: var(--brand-red-light);
}

.badge-icon.green {
  background: rgba(37, 211, 102, 0.18);
  color: var(--wa-green);
}

.hero-floating-badge div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: #FFFFFF;
}

.hero-floating-badge div span {
  font-size: 0.8rem;
  color: var(--text-light);
}

@keyframes floatSmooth {

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

  50% {
    transform: translateY(-8px);
  }
}

/* ==========================================================
   BARRA DE CREDENCIAIS & BIOSSEGURANÇA
   ========================================================== */
.trust-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--bg-surface-subtle);
  padding: 1.8rem 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.8rem;
}

.trust-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-red-subtle);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(229, 26, 36, 0.12);
  transition: var(--tr-fast);
}

.trust-card:hover .trust-card-icon {
  background: var(--brand-red);
  color: #FFFFFF;
  transform: scale(1.05);
}

.trust-card-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.trust-card-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================
   HUB DE DIAGNÓSTICO INTERATIVO DE PRAGAS
   ========================================================== */
.pests-hub {
  background: #FFFFFF;
  position: relative;
}

.pests-grid-selector {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.pest-choice-btn {
  background: var(--bg-surface-alt);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 1.3rem 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--tr-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.pest-choice-btn:hover {
  background: #FFFFFF;
  border-color: rgba(229, 26, 36, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pest-choice-btn.active {
  background: #FFFFFF;
  border-color: var(--brand-red);
  box-shadow: var(--shadow-red);
  transform: translateY(-4px);
}

.pest-emoji-icon {
  font-size: 2.2rem;
  line-height: 1;
  transition: transform var(--tr-bounce);
}

.pest-choice-btn:hover .pest-emoji-icon,
.pest-choice-btn.active .pest-emoji-icon {
  transform: scale(1.2);
}

.pest-choice-btn strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-main);
}

.pest-choice-btn.active strong {
  color: var(--brand-red);
}

.pest-risk-indicator {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-muted);
}

.pest-choice-btn.active .pest-risk-indicator {
  background: rgba(229, 26, 36, 0.12);
  color: var(--brand-red);
}

/* Painel de Solução da Praga Selecionada */
.pest-solution-box {
  background: linear-gradient(135deg, #0E1422 0%, #151D30 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2.8rem;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.pest-solution-box::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(229, 26, 36, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.pest-solution-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.pest-solution-header h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.pest-solution-desc {
  color: #CBD5E1;
  font-size: 1.02rem;
  line-height: 1.68;
  margin-bottom: 1.4rem;
}

.pest-solution-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.5rem;
}

.pest-solution-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #E2E8F0;
}

.pest-solution-points li i {
  color: var(--wa-green);
}

.pest-solution-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pest-solution-action span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ==========================================================
   BENTO GRID DE SERVIÇOS
   ========================================================== */
.services-bento {
  background: var(--bg-body);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.bento-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 26, 36, 0.2);
}

.bento-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bento-card-media {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.bento-card.featured .bento-card-media {
  height: 100%;
}

.bento-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card:hover .bento-card-media img {
  transform: scale(1.06);
}

.bento-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand-red);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(229, 26, 36, 0.4);
}

.bento-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bento-card-body h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 1.28rem;
}

.bento-card-body h3 i {
  color: var(--brand-red);
}

.bento-card-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.bento-tags span {
  background: var(--bg-surface-alt);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--bg-surface-subtle);
}

.bento-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  margin-top: auto;
}

.bento-checklist li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--text-main);
  font-weight: 500;
}

.bento-checklist li i {
  color: var(--brand-red);
  font-size: 0.85rem;
}

/* ==========================================================
   SEÇÃO DE SANITIZAÇÃO & HIGIENE TÉCNICA
   ========================================================== */
.sanitize-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
  position: relative;
}

.sanitize-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sanitize-content h2 {
  margin-bottom: 1rem;
}

.sanitize-lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.sanitize-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.8rem 0;
}

.sanitize-mini-badge {
  background: #FFFFFF;
  border: 1px solid var(--bg-surface-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--tr-fast);
}

.sanitize-mini-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 26, 36, 0.3);
  box-shadow: var(--shadow-md);
}

.sanitize-mini-badge i {
  font-size: 1.3rem;
  color: var(--brand-red);
}

.sanitize-mini-badge span {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
}

.sanitize-visual {
  position: relative;
}

.sanitize-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.sanitize-floating-seal {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #FFFFFF;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.sanitize-floating-seal i {
  font-size: 2rem;
  color: var(--brand-red);
}

.sanitize-floating-seal div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-main);
}

.sanitize-floating-seal div span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================
   REDES DE PROTEÇÃO & CAIXA D'ÁGUA (SPLIT SECTION)
   ========================================================== */
.nets-section {
  background: #FFFFFF;
}

.nets-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.nets-visual-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}

.nets-visual-gallery img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: transform var(--tr-fast);
}

.nets-visual-gallery img:hover {
  transform: scale(1.02);
}

.nets-main-img {
  grid-row: span 2;
  height: 380px !important;
}

.nets-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.5rem;
  margin: 1.6rem 0 2.2rem;
}

.nets-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-main);
}

.nets-checklist li i {
  color: var(--brand-red);
  font-size: 1.1rem;
}

/* ==========================================================
   DIFERENCIAIS & AUTORIDADE (DARK NOBRE)
   ========================================================== */
.why-section {
  background: radial-gradient(circle at center, #131B2C 0%, var(--bg-dark) 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.why-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.why-premium-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(10px);
  transition: all var(--tr-normal);
  position: relative;
}

.why-premium-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(229, 26, 36, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.why-card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: rgba(229, 26, 36, 0.15);
  color: var(--brand-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(229, 26, 36, 0.25);
  transition: var(--tr-fast);
}

.why-premium-card:hover .why-card-icon {
  background: var(--brand-red);
  color: #FFFFFF;
  transform: scale(1.1);
}

.why-premium-card h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.why-premium-card p {
  color: #CBD5E1;
  font-size: 0.94rem;
  line-height: 1.62;
}

/* ==========================================================
   PASSO A PASSO / TIMELINE
   ========================================================== */
.steps-section {
  background: #FFFFFF;
}

.modern-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  position: relative;
}

.timeline-card {
  background: var(--bg-surface-alt);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.6rem;
  border: 1px solid var(--bg-surface-subtle);
  position: relative;
  transition: all var(--tr-fast);
}

.timeline-card:hover {
  background: #FFFFFF;
  border-color: rgba(229, 26, 36, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline-badge-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--brand-red);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-red);
}

.timeline-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.timeline-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================
   SIMULADOR / CALCULADORA INTELIGENTE DE ORÇAMENTO
   ========================================================== */
.quote-simulator-section {
  background: radial-gradient(circle at top, #1A2338 0%, #0A0E17 100%);
  color: #FFFFFF;
  position: relative;
}

.quote-simulator-card {
  background: rgba(17, 23, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
}

.sim-step-title {
  font-size: 1.18rem;
  color: #FFFFFF;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sim-step-title i {
  color: var(--brand-red-light);
}

.sim-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.sim-chip-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.6rem;
  color: #E2E8F0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--tr-fast);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.sim-chip-btn i {
  font-size: 1.25rem;
  color: var(--text-light);
  transition: color var(--tr-fast);
}

.sim-chip-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 26, 36, 0.4);
}

.sim-chip-btn.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #FFFFFF;
  box-shadow: var(--shadow-red);
}

.sim-chip-btn.active i {
  color: #FFFFFF;
}

.sim-inputs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.sim-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sim-field.full-width {
  grid-column: span 2;
}

.sim-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #E2E8F0;
}

.sim-field input,
.sim-field select,
.sim-field textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: var(--tr-fast);
}

.sim-field input:focus,
.sim-field select:focus,
.sim-field textarea:focus {
  border-color: var(--brand-red);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(229, 26, 36, 0.25);
}

.sim-field input::placeholder,
.sim-field textarea::placeholder {
  color: var(--text-light);
}

.sim-field select option {
  background: var(--bg-dark-card);
  color: #FFFFFF;
}

.sim-field.invalid input,
.sim-field.invalid select {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
}

.sim-submit-box {
  margin-top: 1.8rem;
  text-align: center;
}

.sim-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.85rem;
}

/* ==========================================================
   PROVA SOCIAL - GOOGLE REVIEWS 5.0 ESTRELAS
   ========================================================== */
.reviews-section {
  background: #FFFFFF;
}

.google-rating-banner {
  background: var(--bg-surface-alt);
  border: 1px solid var(--bg-surface-subtle);
  border-radius: var(--radius-xl);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 780px;
  margin: 0 auto 2.8rem;
  box-shadow: var(--shadow-sm);
}

.google-banner-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.google-g-icon {
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #4285F4;
  box-shadow: var(--shadow-sm);
}

.google-banner-left strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--text-main);
}

.google-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews-cards-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}

.google-review-card {
  background: var(--bg-surface-alt);
  border: 1px solid var(--bg-surface-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-fast);
  display: flex;
  flex-direction: column;
}

.google-review-card:hover {
  background: #FFFFFF;
  border-color: rgba(229, 26, 36, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red) 0%, #FF767C 100%);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-author-info strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-main);
}

.review-author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.review-author-info span i {
  color: #10B981;
}

.google-review-card p {
  font-size: 0.94rem;
  color: #334155;
  line-height: 1.65;
  margin-top: 0.8rem;
}

/* ==========================================================
   GALERIA DE SERVIÇOS & LIGHTBOX
   ========================================================== */
.gallery-section {
  background: var(--bg-body);
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  background: #FFFFFF;
  border: 1px solid var(--bg-surface-subtle);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--tr-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--brand-red);
  color: #FFFFFF;
  border-color: var(--brand-red);
  box-shadow: var(--shadow-red);
}

.gallery-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.gallery-modern-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 230px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: #CBD5E1;
}

.gallery-modern-item.span-2 {
  grid-column: span 2;
}

.gallery-modern-item.tall {
  grid-row: span 2;
  height: 480px;
}

.gallery-modern-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-modern-item:hover img {
  transform: scale(1.08);
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 23, 0.85) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  transition: opacity var(--tr-fast);
}

.gallery-modern-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-hover-overlay span {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================
   REGIÕES ATENDIDAS & MAPA
   ========================================================== */
.regions-section {
  background: #FFFFFF;
}

.regions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.regions-map-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
  border: 1px solid var(--bg-surface-subtle);
}

.regions-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.regions-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 1.8rem;
}

.city-chip {
  background: var(--bg-surface-alt);
  border: 1px solid var(--bg-surface-subtle);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.city-chip.headquarters {
  background: var(--brand-red-subtle);
  border-color: rgba(229, 26, 36, 0.2);
  color: var(--brand-red);
}

/* ==========================================================
   FAQ COM ACCORDION MODERNO
   ========================================================== */
.faq-section {
  background: var(--bg-body);
}

.faq-accordion-box {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-accordion-item {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-fast);
}

.faq-accordion-item:hover {
  border-color: rgba(229, 26, 36, 0.2);
}

.faq-accordion-header {
  padding: 1.25rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  user-select: none;
}

.faq-accordion-header i {
  color: var(--brand-red);
  transition: transform var(--tr-fast);
  font-size: 0.9rem;
}

.faq-accordion-item.active .faq-accordion-header i {
  transform: rotate(180deg);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.6rem;
}

.faq-accordion-item.active .faq-accordion-body {
  padding: 0 1.6rem 1.4rem;
  max-height: 250px;
}

.faq-accordion-body p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

/* ==========================================================
   CTA FINAL DE ALTA CONVERSÃO
   ========================================================== */
.final-cta-section {
  background: radial-gradient(circle at center, #B80D15 0%, #75050B 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-inner h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}

.final-cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
}

.final-cta-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

/* ==========================================================
   FOOTER PREMIUM
   ========================================================== */
.site-footer {
  background: #0B0F19;
  color: var(--text-light);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-col img {
  height: 52px;
  margin-bottom: 1.2rem;
}

.footer-brand-col p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.8rem;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
  transition: var(--tr-fast);
}

.footer-social-links a:hover {
  background: var(--brand-red);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-col a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--tr-fast);
}

.footer-links-col a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  color: var(--text-light);
}

.footer-contact-list i {
  color: var(--brand-red-light);
  margin-top: 3px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ==========================================================
   ELEMENTOS FLUTUANTES (SMART WHATSAPP & MOBILE BAR)
   ========================================================== */
.smart-wa-launcher {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
}

.wa-smart-bubble {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  max-width: 250px;
  position: relative;
  animation: slideInRight 0.5s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.wa-smart-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  transform: rotate(45deg);
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.wa-bubble-close {
  background: none;
  border: none;
  font-size: 0.8rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 2px;
}

.wa-smart-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-wa);
  position: relative;
  transition: transform var(--tr-bounce);
}

.wa-smart-btn:hover {
  transform: scale(1.1);
}

.wa-smart-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--wa-green);
  animation: pulseRadar 2s infinite;
  z-index: -1;
}

.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 1rem;
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #CBD5E1;
  font-size: 0.72rem;
  font-weight: 600;
}

.dock-item i {
  font-size: 1.15rem;
}

.dock-item.wa-highlight {
  background: var(--wa-green);
  color: #FFFFFF;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  flex-direction: row;
  gap: 0.45rem;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* ==========================================================
   SCROLL REVEAL & ANIMAÇÕES
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================
   LIGHTBOX MODERNO
   ========================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--tr-fast);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--brand-red);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  font-size: 1.8rem;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ==========================================================
   RESPONSIVIDADE (MOBILE & TABLET BREAKPOINTS)
   ========================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

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

  .hero-checks {
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
  }

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

  .bento-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .sanitize-wrapper,
  .nets-grid-layout,
  .regions-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .why-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .modern-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-cards-track {
    grid-template-columns: 1fr;
  }

  .gallery-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-modern-item.span-2,
  .gallery-modern-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 230px;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: 65px;
  }

  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--bg-surface-subtle);
    padding: 1.5rem 1.8rem;
    box-shadow: var(--shadow-xl);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--tr-normal);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    width: 100%;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--bg-surface-alt);
    box-shadow: none;
    border: 1px solid var(--bg-surface-subtle);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    padding: 0.4rem;
    min-width: calc(100% - 0.5rem);
  }

  .nav-item-dropdown:hover .dropdown-menu,
  .nav-item-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .dropdown-menu a {
    padding: 0.55rem 0.8rem !important;
    font-size: 0.86rem !important;
  }

  .nav-mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--bg-surface-subtle);
    width: 100%;
  }

  .pests-grid-selector {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .pest-solution-box {
    grid-template-columns: 1fr;
    padding: 1.8rem 1.4rem;
  }

  .sim-inputs-grid {
    grid-template-columns: 1fr;
  }

  .sim-field.full-width {
    grid-column: span 1;
  }

  .google-rating-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .google-banner-left {
    flex-direction: column;
  }

  .modern-timeline {
    grid-template-columns: 1fr;
  }

  .why-grid-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .mobile-bottom-dock {
    display: flex;
  }

  .smart-wa-launcher {
    bottom: 80px;
    right: 20px;
  }

  .wa-smart-bubble {
    display: none;
  }
}