/* ==========================================================================
   DESENTUPIDORA ENTUPIU CAMPINAS — TEMA MODERNO & AZUL CLEAN (index.html)
   Cores de limpeza, sanitização, transparência e alta conversão
   ========================================================================== */

:root {
  --clean-bg: #f4f8fd;
  --clean-blue-50: #f0f7ff;
  --clean-blue-100: #e0f2fe;
  --clean-blue-200: #bae6fd;
  --clean-blue-300: #7dd3fc;
  --clean-blue-400: #38bdf8;
  --clean-blue-500: #0ea5e9;
  --clean-blue-600: #0284c7;
  --clean-blue-700: #0369a1;
  --clean-navy-800: #0a2550;
  --clean-navy-900: #061938;
  --clean-navy-950: #030d1e;
  --clean-green-500: #22c55e;
  --clean-green-600: #16a34a;
  --clean-card-shadow: 0 10px 30px -6px rgba(6, 25, 56, 0.07);
  --clean-card-shadow-hover: 0 20px 40px -8px rgba(2, 132, 199, 0.18);
  --clean-card-border: 1px solid rgba(2, 132, 199, 0.14);
}

/* Fundo da página com gradiente suave azul clean */
body {
  background-color: var(--clean-bg);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
  color: #1e293b;
}

/* --------------------------------------------------------------------------
   1. TOPBAR REFINADA
   -------------------------------------------------------------------------- */
.topbar {
  background: linear-gradient(90deg, #041024 0%, #071e44 100%) !important;
  border-bottom: 1px solid rgba(2, 132, 199, 0.25);
  font-size: 0.83rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-badge {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}

/* --------------------------------------------------------------------------
   2. HEADER & MENU MODERNO (GLASSMORPHISM)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(18px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
  border-bottom: 1px solid rgba(14, 165, 233, 0.15) !important;
  box-shadow: 0 8px 30px -6px rgba(3, 22, 54, 0.06) !important;
  transition: all 0.3s ease;
}

.site-header .container {
  min-height: 84px;
}

.brand img {
  height: 80px !important;
  width: auto;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.28s ease;
}

.brand:hover img {
  transform: scale(1.04);
}

.main-nav ul {
  gap: 4px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.94rem;
  padding: 8px 14px;
  border-radius: 10px;
  color: #0c274d;
  transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  background: rgba(2, 132, 199, 0.09);
  color: var(--clean-blue-600);
}

.main-nav .caret {
  border-right-color: var(--clean-blue-600);
  border-bottom-color: var(--clean-blue-600);
  margin-left: 2px;
}

/* Dropdown moderno em estilo Card Flutuante */
.main-nav .drop {
  border-radius: 18px !important;
  border: 1px solid rgba(2, 132, 199, 0.18) !important;
  box-shadow: 0 20px 45px -10px rgba(5, 25, 58, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
  padding: 10px !important;
  background: #ffffff !important;
}

.main-nav .drop li a {
  padding: 10px 14px !important;
  font-size: 0.91rem !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  border-radius: 10px !important;
  transition: all 0.18s ease !important;
}

.main-nav .drop li a:hover {
  background: var(--clean-blue-50) !important;
  color: var(--clean-blue-700) !important;
  transform: translateX(4px);
}

/* Botões do Header Modernos */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #15803d;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 3px 12px -2px rgba(34, 197, 94, 0.2);
}

.header-phone-pill:hover {
  background: #dcfce7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -2px rgba(34, 197, 94, 0.35);
  color: #14532d;
}

.header-phone-pulse {
  width: 9px;
  height: 9px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.header-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px -3px rgba(34, 197, 94, 0.45);
  transition: all 0.22s ease;
}

.header-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -4px rgba(34, 197, 94, 0.6);
  filter: brightness(1.05);
}

/* Botão Menu Hambúrguer (Oculto em Desktop, Ativo em Telas Menores) */
.menu-toggle {
  display: none !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border-radius: 12px;
  background: #f0f7ff;
  border: 1.5px solid rgba(2, 132, 199, 0.35);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.12);
  position: relative;
  z-index: 90;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover,
.menu-toggle:focus {
  background: #e0f2fe;
  border-color: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.24);
}

.menu-toggle span {
  display: block !important;
  width: 21px;
  height: 2.5px;
  background-color: #0284c7;
  border-radius: 4px;
  transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
}

/* ==========================================================================
   MENU MOBILE PERSONALIZADO E MODERNO (DRAWER FLUTUANTE COM BLUR)
   ========================================================================== */
.mobile-nav {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 999999 !important;
  background: rgba(3, 14, 34, 0.7) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.mobile-nav.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Painel Deslizante Moderno */
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86vw;
  max-width: 360px;
  height: 100%;
  background: #ffffff;
  box-shadow: -8px 0 35px rgba(2, 14, 35, 0.32);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

/* Topo do Menu Mobile */
.mobile-nav .mn-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #051633 0%, #0c2b59 60%, #0284c7 100%);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  margin-bottom: 0;
}

.mn-brand-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mn-brand-box img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.mn-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.mn-live-dot {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse-green 1.8s infinite;
}

/* Botão Fechar */
.mobile-nav .mn-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}

.mobile-nav .mn-close:hover,
.mobile-nav .mn-close:focus {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08) rotate(90deg);
}

/* Corpo com Rolagem dos Links */
.mn-scroll-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 14px 20px;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
}

/* Itens e Links */
.mobile-nav > ul > li > a,
.mobile-nav-panel .mn-scroll-body > ul > li > a,
.mobile-nav .mn-group > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: #0c274d;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.mobile-nav > ul > li > a:hover,
.mobile-nav-panel .mn-scroll-body > ul > li > a:hover,
.mobile-nav .mn-group > button:hover {
  background: var(--clean-blue-50);
  border-color: rgba(2, 132, 199, 0.2);
  color: var(--clean-blue-700);
  transform: translateX(3px);
}

/* Ícone de Seta do Accordion */
.mn-arrow {
  font-size: 0.72rem;
  color: #0284c7;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.mobile-nav .mn-group.open .mn-arrow {
  transform: rotate(180deg);
}

/* Submenu Accordion Moderno */
.mobile-nav .mn-sub {
  display: none;
  padding: 6px 8px 10px;
  background: #f8fafc;
  border-radius: 12px;
  margin: 4px 0 8px 10px;
  border-left: 2.5px solid #0284c7;
  gap: 2px;
}

.mobile-nav .mn-group.open .mn-sub {
  display: flex;
  flex-direction: column;
}

.mobile-nav .mn-sub a {
  display: block;
  padding: 9px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.18s ease;
}

.mobile-nav .mn-sub a:hover {
  background: #e0f2fe;
  color: #0369a1;
  transform: translateX(4px);
}

/* Submenu de Cidades em Grid Duplo */
.mobile-nav .mn-sub-cities {
  display: none;
}

.mobile-nav .mn-group.open .mn-sub-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

/* Ações Rápidas no Rodapé do Menu Mobile */
.mn-actions {
  padding: 14px 16px 20px;
  background: #f0f7ff;
  border-top: 1px solid rgba(2, 132, 199, 0.18);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mn-emergency-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.mn-pulse-clock {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.mn-emergency-banner strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.84rem;
  color: #0c274d;
  line-height: 1.2;
}

.mn-emergency-banner small {
  font-size: 0.74rem;
  color: #64748b;
}

.mn-cta-wa {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px !important;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.94rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  transition: all 0.2s ease;
}

.mn-cta-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.5);
}

.mn-cta-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 18px;
  background: #ffffff;
  border: 1.5px solid rgba(2, 132, 199, 0.35);
  color: #0369a1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mn-cta-tel:hover {
  background: #e0f2fe;
  color: #0284c7;
}

/* --------------------------------------------------------------------------
   3. NOVO HERO MODERNO COM FORMULÁRIO WHATSAPP INTEGRADO
   -------------------------------------------------------------------------- */
.hero-clean-sec {
  position: relative;
  background-color: #051633;
  background-image: 
    linear-gradient(135deg, rgba(4, 18, 44, 0.92) 0%, rgba(7, 33, 76, 0.86) 45%, rgba(2, 110, 199, 0.72) 100%),
    url('/img/hero-desentupidor.jpg');
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 64px 0 78px;
  overflow: hidden;
  border-bottom: 1px solid rgba(14, 165, 233, 0.25);
}

/* Efeito sutil de água / brilho tecnológico e overlay azul no fundo */
.hero-clean-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.22) 0%, transparent 50%),
              radial-gradient(circle at 15% 85%, rgba(2, 132, 199, 0.25) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-clean-sec::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.hero-clean-sec .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 46px;
  align-items: center;
}

/* Coluna Esquerda do Hero */
.hero-copy-clean {
  display: flex;
  flex-direction: column;
}

.hero-urgent-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero-urgent-pill .dot {
  width: 9px;
  height: 9px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-green 1.8s infinite;
}

.hero-clean-sec h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.hero-clean-sec h1 .text-highlight {
  background: linear-gradient(90deg, #38bdf8 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.35);
}

.hero-lead-text {
  color: #e0f2fe;
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 38rem;
}

/* Grid de Pilares de Confiança */
.hero-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 11px 15px;
  border-radius: 14px;
  transition: all 0.22s ease;
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

.pillar-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.pillar-item strong {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
  font-family: var(--font-head);
  line-height: 1.25;
}

.pillar-item small {
  display: block;
  font-size: 0.74rem;
  color: #bae6fd;
  line-height: 1.2;
}

/* Prova Social & Ação Direta no Hero */
.hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 6px;
}

.hero-rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: #e0f2fe;
}

.hero-rating-box .stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 1rem;
}

.hero-direct-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 18px;
  border-radius: 999px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.hero-direct-call:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #38bdf8;
}

/* --------------------------------------------------------------------------
   4. CARD DO FORMULÁRIO WHATSAPP NO HERO (ALTA CONVERSÃO)
   -------------------------------------------------------------------------- */
.hero-form-wrapper {
  position: relative;
  width: 100%;
}

.hero-wa-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0 25px 55px -10px rgba(2, 18, 48, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.35);
  color: #1e293b;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

/* Barra com gradiente modern de limpeza no topo do card */
.hero-wa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0284c7 0%, #0ea5e9 45%, #22c55e 100%);
}

.hero-card-header {
  margin-bottom: 18px;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.hero-wa-card h3 {
  font-size: 1.4rem;
  color: #061938;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-wa-card p.subtitle {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.4;
}

.hero-input-group {
  margin-bottom: 13px;
  text-align: left;
}

.hero-input-group label {
  display: block;
  font-size: 0.81rem;
  font-weight: 700;
  color: #0c274d;
  margin-bottom: 5px;
}

.hero-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-input-box .input-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  pointer-events: none;
  opacity: 0.75;
  z-index: 2;
}

.hero-input-box input,
.hero-input-box select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  font-size: 0.94rem;
  font-family: var(--font-body);
  background: #f8fafc;
  color: #1e293b;
  transition: all 0.2s ease;
}

.hero-input-box select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.hero-input-box input:focus,
.hero-input-box select:focus {
  outline: none;
  border-color: var(--clean-blue-600);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.18);
}

/* Botão de Envio do WhatsApp no Hero */
.btn-hero-wa-submit {
  width: 100%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-head);
  padding: 15px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 24px -4px rgba(34, 197, 94, 0.5);
  transition: all 0.22s ease;
  margin-top: 14px;
}

.btn-hero-wa-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(34, 197, 94, 0.65);
  filter: brightness(1.06);
}

.btn-hero-wa-submit:active {
  transform: translateY(0);
}

.hero-form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.77rem;
  color: #64748b;
  text-align: center;
}

/* --------------------------------------------------------------------------
   5. SEÇÕES DO INDEX COM ESTÉTICA AZUL CLEAN & SANITIZAÇÃO
   -------------------------------------------------------------------------- */

/* Seletor Urgente */
.urgent-sec {
  background: #ffffff;
  border-bottom: 1px solid rgba(2, 132, 199, 0.12);
  padding: 56px 0;
}

.urgent-sec .sec-head h2 {
  color: #061938;
}

.card-urgent {
  background: #ffffff !important;
  border: 1.5px solid rgba(2, 132, 199, 0.14) !important;
  border-radius: 18px !important;
  box-shadow: 0 6px 18px -4px rgba(2, 44, 95, 0.05) !important;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.card-urgent:hover {
  border-color: var(--clean-blue-600) !important;
  background: var(--clean-blue-50) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 14px 28px -6px rgba(2, 132, 199, 0.22) !important;
}

.card-urgent span {
  color: #061938 !important;
  font-weight: 700 !important;
}

/* Seção Preços & Pagamento Facilitado */
.prices-sec {
  background: linear-gradient(180deg, #f0f7ff 0%, #e6f2fd 100%) !important;
  border-top: 1px solid rgba(2, 132, 199, 0.14);
  border-bottom: 1px solid rgba(2, 132, 199, 0.14);
  padding: 68px 0 !important;
}

.box-price-left,
.box-price-right {
  background: #ffffff !important;
  border: 1px solid rgba(2, 132, 199, 0.16) !important;
  border-radius: 20px !important;
  box-shadow: var(--clean-card-shadow) !important;
}

.box-price-right p,
.price-right-body p {
  color: #000000 !important;
}

.badge-price-title {
  background: #e0f2fe !important;
  color: #0369a1 !important;
  border: 1px solid #bae6fd !important;
  font-weight: 800;
}

.highlight-box-orange {
  background: #ecfdf5 !important;
  color: #065f46 !important;
  border: 1.5px dashed #34d399 !important;
  font-weight: 700;
}

/* Seção Nossos Serviços */
.services-ref-sec {
  background: #f8fbff !important;
  padding: 68px 0 !important;
}

.card-service-ref {
  background: #ffffff !important;
  border: 1px solid rgba(2, 132, 199, 0.14) !important;
  border-radius: 20px !important;
  box-shadow: var(--clean-card-shadow) !important;
  transition: all 0.28s ease !important;
}

.card-service-ref:hover {
  border-color: var(--clean-blue-500) !important;
  transform: translateY(-5px) !important;
  box-shadow: var(--clean-card-shadow-hover) !important;
}

.service-pill-label {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
}

.btn-service-cta {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35) !important;
}

.btn-service-cta:hover {
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.5) !important;
  filter: brightness(1.05);
}

.service-more-link {
  color: var(--clean-blue-600) !important;
  font-weight: 700 !important;
}

.service-more-link:hover {
  color: var(--clean-blue-700) !important;
  text-decoration: underline !important;
}

/* Faixa Especialista */
.expert-strip-sec {
  background: linear-gradient(135deg, #05193b 0%, #0a2d64 50%, #0352ad 100%) !important;
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.expert-strip-btn {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  box-shadow: 0 8px 20px -4px rgba(34, 197, 94, 0.5) !important;
}

/* Vantagens que você merece */
.advantages-sec {
  background: linear-gradient(180deg, #f0f7ff 0%, #e6f2fd 100%) !important;
}

.card-advantage {
  background: #ffffff !important;
  border: 1px solid rgba(2, 132, 199, 0.16) !important;
  border-radius: 18px !important;
  box-shadow: var(--clean-card-shadow) !important;
}

/* Cidades Atendidas */
.section-alt {
  background: #f4f8fd !important;
}

.card-cidade {
  background: #ffffff !important;
  border: 1.5px solid rgba(2, 132, 199, 0.14) !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 14px rgba(2, 44, 95, 0.04) !important;
  transition: all 0.22s ease !important;
}

.card-cidade:hover {
  border-color: var(--clean-blue-600) !important;
  background: var(--clean-blue-50) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 24px -4px rgba(2, 132, 199, 0.2) !important;
}

.card-cidade svg {
  color: var(--clean-blue-600) !important;
}

/* Seção Contato */
#contato {
  background: #ffffff !important;
  border-top: 1px solid rgba(2, 132, 199, 0.12);
}

#contato .form-card {
  border: 1px solid rgba(2, 132, 199, 0.18) !important;
  border-radius: 20px !important;
  box-shadow: var(--clean-card-shadow) !important;
}

/* --------------------------------------------------------------------------
   6. RESPONSIVIDADE DO NOVO HERO E MENU
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-clean-sec {
    padding: 44px 0 56px;
    background-position: center center;
  }
  .hero-clean-sec .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-lead-text {
    max-width: 100%;
  }
  .hero-form-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }
  .site-header .container {
    min-height: 68px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .brand img {
    height: 56px !important;
  }
  .main-nav {
    display: none !important;
  }
  .menu-toggle {
    display: inline-flex !important;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-actions .header-phone-pill {
    display: none !important;
  }
  .header-actions .header-wa-btn {
    display: inline-flex !important;
    padding: 8px 14px;
    font-size: 0.82rem;
    gap: 6px;
    border-radius: 999px;
  }
}

@media (max-width: 640px) {
  .hero-clean-sec {
    padding: 30px 0 46px;
  }
  .hero-clean-sec h1 {
    font-size: 1.85rem;
  }
  .hero-lead-text {
    font-size: 0.96rem;
    margin-bottom: 20px;
  }
  .hero-pillars-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-wa-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .hero-wa-card h3 {
    font-size: 1.25rem;
  }
  .btn-hero-wa-submit {
    font-size: 0.98rem;
    padding: 13px;
  }
  .hero-direct-call {
    width: 100%;
    justify-content: center;
  }
  .brand img {
    height: 48px !important;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .header-wa-btn {
    padding: 7px 11px;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   7. SEÇÃO FAIXA ESPECIALISTA MODERNA (DESIGN PERSONALIZADO & CLEAN)
   ========================================================================== */
.expert-strip-modern {
  padding: 44px 0 !important;
  background: transparent !important;
  border: none !important;
}

.expert-card-modern {
  background: linear-gradient(135deg, #061b3b 0%, #0a2d64 50%, #026bb8 100%);
  border: 1.5px solid rgba(14, 165, 233, 0.32);
  border-radius: 26px;
  padding: 34px 40px;
  box-shadow: 0 20px 50px -10px rgba(5, 25, 58, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.expert-card-modern::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.expert-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.expert-img-box {
  width: 112px;
  height: 112px;
  position: relative;
}

.expert-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3.5px solid #38bdf8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.expert-status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background-color: #22c55e;
  border: 2.5px solid #061b3b;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-green 1.8s infinite;
}

.expert-exp-badge {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.expert-info-wrap {
  display: flex;
  flex-direction: column;
}

.expert-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.expert-header-tag .tag-pulse {
  width: 7px;
  height: 7px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 8px #38bdf8;
}

.expert-card-modern h3 {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 8px;
}

.expert-card-modern p {
  color: #e0f2fe;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 14px;
  max-width: 38rem;
}

.expert-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expert-highlights .chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #bae6fd;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.expert-action-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 230px;
}

.expert-cta-modern {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff !important;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 24px -4px rgba(34, 197, 94, 0.55);
  transition: all 0.22s ease;
}

.expert-cta-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(34, 197, 94, 0.7);
  filter: brightness(1.05);
}

.expert-cta-modern strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.expert-cta-modern small {
  display: block;
  font-size: 0.74rem;
  color: #dcfce7;
  font-weight: 600;
}

.expert-phone-link {
  text-align: center;
  color: #bae6fd;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px;
}

.expert-phone-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================================================
   8. SEÇÃO VANTAGENS QUE VOCÊ MERECE (DESIGN PERSONALIZADO & CLEAN)
   ========================================================================== */
.advantages-sec-modern {
  background: linear-gradient(180deg, #f4f9fe 0%, #eaf3fd 100%) !important;
  padding: 72px 0 !important;
  border-top: 1px solid rgba(2, 132, 199, 0.12);
  border-bottom: 1px solid rgba(2, 132, 199, 0.12);
}

.sec-head-clean {
  max-width: 46rem;
  margin: 0 auto 46px;
  text-align: center;
}

.sec-head-clean .eyebrow-pill {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.sec-head-clean h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: #061d40;
  font-weight: 900;
  margin-bottom: 10px;
}

.sec-head-clean p {
  color: #526685;
  font-size: 1.02rem;
  line-height: 1.6;
}

.grid-advantages-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.card-adv-modern {
  background: #ffffff;
  border: 1.5px solid rgba(2, 132, 199, 0.12);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 8px 24px -4px rgba(3, 26, 61, 0.05);
  transition: all 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card-adv-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card-adv-modern:hover {
  transform: translateY(-6px);
  border-color: #0284c7;
  box-shadow: 0 18px 36px -8px rgba(2, 132, 199, 0.18);
}

.card-adv-modern:hover::before {
  opacity: 1;
}

.adv-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.adv-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.adv-icon-box.adv-blue {
  background: #e0f2fe;
}

.adv-icon-box.adv-green {
  background: #ecfdf5;
}

.adv-icon-box.adv-sky {
  background: #e0f7fe;
}

.adv-icon-box.adv-navy {
  background: #eef2ff;
}

.adv-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0284c7;
  background: #f0f7ff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.card-adv-modern h3 {
  font-size: 1.15rem;
  color: #061d40;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-adv-modern p {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.adv-footer-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #059669;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

.adv-footer-line .adv-check {
  background: #dcfce7;
  color: #16a34a;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.adv-bottom-trust {
  background: #ffffff;
  border: 1.5px solid rgba(2, 132, 199, 0.16);
  border-radius: 18px;
  padding: 16px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 18px -4px rgba(3, 26, 61, 0.04);
}

.adv-bottom-trust .trust-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #1e293b;
}

.adv-bottom-trust .trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.btn-adv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: all 0.22s ease;
}

.btn-adv-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.5);
  filter: brightness(1.05);
}

/* Responsividade Especialista e Vantagens */
@media (max-width: 992px) {
  .expert-card-modern {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 28px 24px;
  }
  .expert-avatar-wrap {
    margin: 0 auto;
  }
  .expert-highlights {
    justify-content: center;
  }
  .expert-action-wrap {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
  .grid-advantages-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .adv-bottom-trust {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .expert-strip-modern {
    padding: 28px 0 !important;
  }
  .expert-card-modern {
    padding: 24px 18px;
    border-radius: 20px;
  }
  .expert-card-modern h3 {
    font-size: 1.22rem;
  }
  .expert-card-modern p {
    font-size: 0.88rem;
  }
  .grid-advantages-modern {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card-adv-modern {
    padding: 22px 18px;
  }
  .advantages-sec-modern {
    padding: 48px 0 !important;
  }
  .sec-head-clean {
    margin-bottom: 30px;
  }
}

