/* ============================================
   LD DESENTUPIDORA SP — cores da logo (amarelo dourado + preto + vermelho vivo)
   ============================================ */

:root {
  --verde: #F0C800;
  --verde-dark: #C9A700;
  --verde-light: #F5DC55;
  --verde-soft: #FFF4C4;

  --cinza: #545454;
  --cinza-dark: #1A1A1A;
  --cinza-soft: #6B6B6B;
  --cinza-borda: #E5E5E5;

  --laranja: #DC1414;
  --laranja-dark: #B01010;

  --off-white: #F8F8F5;
  --white: #FFFFFF;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(84,84,84,.06);
  --shadow-md: 0 8px 24px rgba(84,84,84,.08);
  --shadow-lg: 0 12px 40px rgba(84,84,84,.12);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --container: 1280px;
  --header-h: 80px;
  --header-h-scroll: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cinza);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }

/* ============================================ NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  height: var(--header-h);
  background: rgba(26, 26, 26, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: height .3s ease, box-shadow .3s ease, border-color .3s ease;
  z-index: 1000;
}
.navbar.scrolled {
  height: var(--header-h-scroll);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  border-bottom-color: rgba(240, 200, 0, 0.25);
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--verde);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cinza-dark);
  font-weight: 900; font-size: 18px;
  letter-spacing: -.03em;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.logo:hover .logo-mark { transform: rotate(-8deg); }
.logo-text {
  font-size: 18px; font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--verde);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color .2s ease;
  padding: 8px 0;
  position: relative;
}
.nav-link:hover { color: var(--verde); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--verde);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

/* Nav dropdown (Serviços) */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-dropdown > .nav-link::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  order: 2;
  transition: transform .25s;
}
.nav-dropdown.open > .nav-link::before,
.nav-dropdown:hover > .nav-link::before {
  transform: rotate(225deg) translateY(-2px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cinza-borda);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 100;
}
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown.open > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid var(--cinza-borda);
  border-top: 1px solid var(--cinza-borda);
}
.nav-dropdown-menu li { border-bottom: 0 !important; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--cinza-dark);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--verde-soft);
  color: var(--laranja);
}
.nav-dropdown-menu a .nd-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--verde-soft);
  color: var(--laranja);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--verde);
  color: var(--cinza-dark) !important;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  transition: background .25s ease, transform .25s ease;
  letter-spacing: .02em;
}
.nav-cta:hover {
  background: var(--verde-dark);
  color: var(--cinza-dark) !important;
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}

/* ============================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--verde);
  color: var(--cinza-dark);
  border-color: var(--verde);
}
.btn-primary:hover {
  background: var(--cinza-dark);
  border-color: var(--cinza-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,26,26,.2);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1DA851;
  border-color: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,.3);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover {
  background: var(--verde);
  color: var(--cinza-dark);
  border-color: var(--verde);
}
.btn-outline-dark {
  background: transparent;
  color: var(--cinza-dark);
  border-color: var(--cinza-dark);
}
.btn-outline-dark:hover {
  background: var(--cinza-dark);
  color: var(--white);
}

/* ============================================ HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 50px) 0 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cinza-dark);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.35);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(95deg, rgba(248,248,245,0.96) 0%, rgba(248,248,245,0.85) 38%, rgba(248,248,245,0.5) 65%, rgba(248,248,245,0.25) 100%),
    url("/assets/images/hero-bg.jpg?v=2");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  animation: heroZoom 20s ease-out forwards;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--off-white));
  pointer-events: none;
  z-index: 1;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  animation: heroFadeIn .9s ease-out both;
}
.hero h1 { text-shadow: 0 1px 0 rgba(255,255,255,0.4); }
.hero-tag {
  background: var(--white);
  border: 1px solid var(--cinza-borda);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  margin-bottom: 24px !important;
}
.hero-tag::before { background: var(--laranja); }
.btn-outline-dark {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cinza);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: "";
  width: 36px; height: 3px;
  background: var(--laranja);
}
.hero h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--cinza-dark);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--cinza); font-weight: 400; }
.hero h1 .highlight {
  background: var(--cinza-dark);
  color: var(--verde);
  padding: 0 12px;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 560px;
  color: var(--cinza-soft);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 620px;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
}
.trust-text { font-size: 13px; line-height: 1.4; color: var(--cinza-soft); }
.trust-text strong { display: block; font-size: 14px; color: var(--cinza-dark); font-weight: 700; margin-bottom: 2px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  justify-self: end;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cinza-dark);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7) 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.hero-visual-quote {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 320px;
}
.hero-seal {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--verde);
  color: var(--cinza-dark);
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: seal-pulse 2.5s ease-in-out infinite;
}
.hero-seal .dot {
  width: 8px; height: 8px;
  background: #ff3838;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes seal-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ============================================ SECTION HEADERS */
.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--laranja);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 40px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 3px;
  background: var(--laranja);
  transform: translateY(-50%);
}
.section-eyebrow.center { padding-left: 0; padding-top: 16px; }
.section-eyebrow.center::before {
  left: 50%; top: 0; transform: translateX(-50%);
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--cinza-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-head h2 .highlight {
  background: var(--verde);
  padding: 0 10px;
}
.section-head p {
  font-size: 17px;
  color: var(--cinza-soft);
  line-height: 1.6;
}

/* ============================================ AUTORIDADE (números) */
.autoridade {
  background: var(--off-white);
  padding: 64px 0;
}
.autoridade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.autoridade-item .num {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 900;
  color: var(--cinza-dark);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.autoridade-item .num span { color: var(--laranja); }
.autoridade-item .label {
  font-size: 13px;
  color: var(--cinza-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ============================================ SERVIÇOS GRID */
.servicos { background: var(--white); }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servico-card {
  background: var(--white);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--verde);
}
.servico-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--verde-soft);
  color: var(--cinza-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .3s ease;
}
.servico-card:hover .servico-icon {
  background: var(--verde);
}
.servico-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.servico-card p {
  font-size: 14.5px;
  color: var(--cinza-soft);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 18px;
}
.servico-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cinza-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .25s ease, gap .25s ease;
}
.servico-link:hover {
  color: var(--laranja);
  gap: 12px;
}

/* ============================================ SEÇÃO PREMIUM (escura) */
.premium {
  background: var(--cinza-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.premium::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(circle at top right, rgba(205,220,73,.18), transparent 60%);
}
.premium .container { position: relative; z-index: 2; }
.premium h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.premium h2 .verde { color: var(--verde); }
.premium p {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.premium-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.premium-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(205,220,73,.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.premium-badge svg { color: var(--verde); }

/* ============================================ ÁREAS ATENDIDAS */
.areas { background: var(--off-white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.area-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cinza-dark);
  aspect-ratio: 4/5;
  transition: transform .3s ease;
}
.area-card:hover { transform: translateY(-4px); }
.area-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .55;
  transition: transform .5s ease, opacity .3s ease;
}
.area-card:hover .area-card-img {
  transform: scale(1.06);
  opacity: .65;
}
.area-card-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
  z-index: 2;
}
.area-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.15;
}
.area-card p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
}
.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================ COMO FUNCIONA */
.como-funciona { background: var(--white); }
.passos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.passo {
  text-align: center;
  position: relative;
}
.passo-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--cinza-dark);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(205,220,73,.4);
}
.passo h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 8px;
}
.passo p {
  font-size: 14px;
  color: var(--cinza-soft);
  line-height: 1.5;
}

/* ============================================ DIFERENCIAIS */
.diferenciais { background: var(--off-white); }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dif-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--r-md);
  border-left: 4px solid var(--verde);
  transition: transform .3s ease, box-shadow .3s ease;
}
.dif-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.dif-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.dif-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--verde-soft);
  color: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dif-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--cinza-dark);
  line-height: 1.25;
}
.dif-card p {
  font-size: 14.5px;
  color: var(--cinza-soft);
  line-height: 1.55;
}

/* ============================================ DEPOIMENTOS */
.depoimentos { background: var(--white); }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dep-card {
  background: var(--off-white);
  padding: 28px;
  border-radius: var(--r-md);
  position: relative;
}
.dep-card::before {
  content: "\201C";
  position: absolute;
  top: 6px; left: 22px;
  font-size: 64px;
  color: var(--verde);
  line-height: 1;
  font-family: Georgia, serif;
}
.dep-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  margin-top: 30px;
  color: var(--laranja);
}
.dep-text {
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dep-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--cinza-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.dep-name { font-weight: 700; color: var(--cinza-dark); font-size: 14.5px; }
.dep-loc { font-size: 12.5px; color: var(--cinza-soft); }

/* ============================================ BLOG PREVIEW */
.blog-preview { background: var(--off-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--cinza-borda);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--verde-soft);
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 22px; }
.blog-card-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--laranja);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 14px;
  color: var(--cinza-soft);
  line-height: 1.5;
}
.blog-card-empty {
  background: var(--white);
  border: 2px dashed var(--cinza-borda);
  border-radius: var(--r-md);
  padding: 60px 30px;
  text-align: center;
  color: var(--cinza-soft);
  grid-column: 1 / -1;
  font-size: 15px;
}

/* ============================================ CTA FINAL */
.cta-final {
  background: var(--cinza-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: var(--verde);
  border-radius: 50%;
  opacity: .1;
  filter: blur(40px);
}
.cta-final::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  background: var(--laranja);
  border-radius: 50%;
  opacity: .15;
  filter: blur(40px);
}
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin: 0 auto 32px;
}
.cta-final .btn-primary { background: var(--verde); border-color: var(--verde); }

/* ============================================ FOOTER */
.footer {
  background: #0F0F0F;
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
}
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--verde); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.footer-contact-item svg { color: var(--verde); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: var(--verde); font-weight: 600; }
.footer-bottom a:hover { color: var(--laranja); }

/* ============================================ WHATSAPP FLUTUANTE */
.whats-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: whats-bounce 2s ease-in-out infinite;
}
.whats-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(37,211,102,.5);
}
@keyframes whats-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================ PÁGINAS INTERNAS (serviços, áreas, contato) */
.page-hero {
  background: var(--cinza-dark);
  color: var(--white);
  padding: calc(var(--header-h) + 60px) 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 35%; height: 100%;
  background: radial-gradient(circle at center, rgba(205,220,73,.15), transparent 65%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--verde); }
.breadcrumb a:hover { color: var(--laranja); }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 800px;
}
.page-hero h1 .verde { color: var(--verde); }
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  max-width: 680px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.page-hero .btn { margin-right: 12px; }

.page-content { padding: 80px 0; background: var(--white); }
.page-content .container {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}
.page-content article h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin: 32px 0 14px;
  line-height: 1.25;
}
.page-content article h2:first-child { margin-top: 0; }
.page-content article h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--cinza-dark);
  margin: 24px 0 10px;
}
.page-content article p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--cinza);
  margin-bottom: 16px;
}
.page-content article ul {
  margin: 14px 0 20px 0;
  padding-left: 22px;
}
.page-content article ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cinza);
  margin-bottom: 8px;
}
.page-content article ul li::marker { color: var(--verde-dark); }

.sidebar {
  position: sticky;
  top: 100px;
  background: var(--off-white);
  padding: 28px;
  border-radius: var(--r-md);
  border-top: 4px solid var(--verde);
}
.sidebar h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sidebar p {
  font-size: 14px;
  color: var(--cinza-soft);
  line-height: 1.55;
  margin-bottom: 18px;
}
.sidebar .btn { width: 100%; margin-bottom: 10px; }

/* Lista bairros (página área) */
.bairros-list {
  columns: 2;
  column-gap: 24px;
  margin-top: 16px;
}
.bairros-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  break-inside: avoid;
  font-size: 15px;
  color: var(--cinza);
  list-style: none;
}
.bairros-list li::before {
  content: "✓";
  color: var(--verde-dark);
  font-weight: 800;
}

/* ============================================ CONTATO PAGE */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
.contato-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 18px;
}
.contato-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contato-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--verde-soft);
  color: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-item strong { display: block; font-size: 15px; color: var(--cinza-dark); margin-bottom: 4px; }
.contato-item p { font-size: 14px; color: var(--cinza-soft); line-height: 1.5; }
.contato-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

/* ============================================ ANIMATIONS */
.fade-up {
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.js .fade-up {
  opacity: 0;
  transform: translateY(20px);
}
.js .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================ MOBILE */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-self: center; max-width: 380px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .passos { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .autoridade-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .page-content .container { grid-template-columns: 1fr; }
  .sidebar { position: relative; top: 0; }
  .contato-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .3s ease, visibility .3s;
    visibility: hidden;
    align-items: stretch;
    overflow-y: auto;
    justify-content: flex-start;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links li { border-bottom: 1px solid var(--cinza-borda); }
  .nav-link { padding: 14px 4px; display: block; font-size: 15px; }
  /* Dropdown vira accordion no mobile */
  .nav-dropdown { width: 100%; }
  .nav-dropdown > .nav-link { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 16px;
    min-width: 0;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-dropdown.open > .nav-dropdown-menu {
    max-height: 500px;
    transform: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { padding: 10px 8px; font-size: 14px; }
  .nav-cta { margin-top: 14px; justify-content: center; }
  .menu-toggle { display: block; }

  .hero { min-height: auto; padding: calc(var(--header-h) + 40px) 0 60px; }
  .hero::before { width: 60%; height: 35%; }
  .hero::after { width: 70%; height: 25%; }
  .hero-trust { grid-template-columns: 1fr; gap: 14px; }
  .hero-ctas .btn { width: 100%; }
  .hero-visual { aspect-ratio: 5/4; max-width: 100%; }

  .servicos-grid, .areas-grid, .dif-grid, .blog-grid { grid-template-columns: 1fr; }
  .passos { grid-template-columns: 1fr; }
  .autoridade-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .bairros-list { columns: 1; }
  .premium-badges { gap: 14px; }
  .premium-badge { font-size: 13px; padding: 10px 16px; }
  .whats-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
}

/* ==========================================================================
   Logo image (transparente em navbar escura e footer escuro)
   ========================================================================== */
.logo-img-wrap {
  display: inline-flex;
  padding: 0;
  background: transparent;
  align-items: center;
}
.logo-img-wrap img {
  height: 44px !important;
  width: 60px !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.navbar.scrolled .logo-img-wrap img { height: 36px !important; width: 49px !important; }
.footer-brand .logo-img-wrap img { height: 56px !important; width: 77px !important; }
@media (max-width: 768px) {
  .logo-img-wrap img { height: 36px !important; width: 49px !important; }
  .footer-brand .logo-img-wrap img { height: 48px !important; width: 66px !important; }
}

/* ==========================================================================
   PÁGINAS DE SERVIÇO — UPGRADE DE CONVERSÃO
   ========================================================================== */

/* ----- Banner de urgência fino (topo da página) ----- */
.urgency-banner {
  background: linear-gradient(90deg, var(--cinza-dark) 0%, #2a2a2a 100%);
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: var(--header-h);
  position: relative;
  z-index: 5;
}
.urgency-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.urgency-banner .pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  animation: pulseDot 2s infinite;
  box-shadow: 0 0 0 0 rgba(46,204,113,.7);
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,.7); }
  70% { box-shadow: 0 0 0 10px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.urgency-banner strong { color: var(--verde); }
.urgency-banner a {
  color: var(--verde);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.urgency-banner a:hover { color: #fff; }

/* página com banner de urgência: hero não precisa de margin-top extra */
.urgency-banner + .page-hero { margin-top: 0; }
.urgency-banner + .page-hero::before { top: 0; }

/* ----- Stripe de prova social (depois do hero) ----- */
.proof-stripe {
  background: var(--cinza-dark);
  padding: 22px 0;
  color: #fff;
}
.proof-stripe .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #d8d8d8;
}
.proof-item strong {
  color: var(--verde);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.proof-item .stars { color: var(--verde); letter-spacing: 1px; }

/* ----- Section heads (variante centrada) ----- */
.svc-section { padding: 80px 0; }
.svc-section.dark { background: var(--cinza-dark); color: #fff; }
.svc-section.alt { background: var(--off-white); }
.svc-section h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--cinza-dark);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -.02em;
}
.svc-section.dark h2 { color: #fff; }
.svc-section h2 .verde { color: var(--verde); }
.svc-section h2 .laranja { color: var(--laranja); }
.svc-section .lead {
  font-size: 17px;
  color: var(--cinza-soft);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.svc-section.dark .lead { color: #c8c8c8; }

/* ----- Sintomas grid ----- */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.symptom-card {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--r-md);
  padding: 26px 22px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--verde);
}
.symptom-card .symptom-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--verde-soft);
  color: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.symptom-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--cinza-dark);
  margin-bottom: 8px;
}
.symptom-card p {
  font-size: 14.5px;
  color: var(--cinza-soft);
  line-height: 1.55;
}

/* ----- 4 passos ----- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  border: 1px solid var(--cinza-borda);
}
.step-card .step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--cinza-dark);
  font-weight: 900;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cinza-dark);
  margin-bottom: 6px;
}
.step-card p {
  font-size: 14px;
  color: var(--cinza-soft);
  line-height: 1.55;
}
.steps-cta { text-align: center; margin-top: 40px; }

/* ----- Casos / ambientes ----- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.case-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--cinza-borda);
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.case-card .case-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cinza-dark);
  color: var(--verde);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
}
.case-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 8px;
}
.case-card p {
  font-size: 15px;
  color: var(--cinza-soft);
  line-height: 1.55;
  margin-bottom: 12px;
}
.case-card ul { padding-left: 18px; }
.case-card ul li {
  font-size: 14px;
  color: var(--cinza);
  margin-bottom: 4px;
}
.case-card ul li::marker { color: var(--verde-dark); }

/* ----- Form inline (lead → WhatsApp) ----- */
.form-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cinza-borda);
}
.form-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 8px;
}
.form-card .form-sub {
  color: var(--cinza-soft);
  font-size: 15px;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row.single { grid-template-columns: 1fr; }
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 15px;
  color: var(--cinza-dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(255,203,8,.18);
}
.form-input::placeholder { color: #b6b6b6; }
textarea.form-input { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 16px 20px;
  background: var(--laranja);
  color: #fff;
  border: 0;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: var(--laranja-dark); transform: translateY(-1px); }
.form-card .form-foot {
  text-align: center;
  font-size: 13px;
  color: var(--cinza-soft);
  margin-top: 14px;
}
.form-card .form-foot strong { color: var(--cinza-dark); }

/* ----- FAQ Accordion ----- */
.accordion {
  max-width: 820px;
  margin: 0 auto;
}
.accordion-item {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.accordion-item.open {
  border-color: var(--verde);
  box-shadow: var(--shadow-sm);
}
.accordion-q {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--cinza-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.45;
}
.accordion-q::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: var(--laranja);
  transition: transform .25s;
  flex-shrink: 0;
  line-height: 1;
}
.accordion-item.open .accordion-q::after { transform: rotate(45deg); }
.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 24px;
}
.accordion-item.open .accordion-a {
  max-height: 600px;
  padding: 0 24px 22px;
}
.accordion-a p {
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.65;
  margin-bottom: 10px;
}
.accordion-a p:last-child { margin-bottom: 0; }

/* ----- Garantia (selo grande) ----- */
.guarantee-card {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--verde-soft) 0%, #fff 100%);
  border: 2px solid var(--verde);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: center;
}
.guarantee-seal {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--cinza-dark);
  color: var(--verde);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  border: 4px solid var(--verde);
  flex-shrink: 0;
}
.guarantee-seal .seal-num { font-size: 34px; line-height: 1; }
.guarantee-seal .seal-txt { font-size: 11px; letter-spacing: 1.5px; margin-top: 4px; }
.guarantee-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 10px;
}
.guarantee-card p {
  font-size: 16px;
  color: var(--cinza);
  line-height: 1.6;
}

/* ----- CTA final imersivo (escuro) ----- */
.cta-final-dark {
  background: var(--cinza-dark);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,203,8,.10) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(152,53,48,.18) 0%, transparent 45%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.cta-final-dark h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -.02em;
}
.cta-final-dark h2 .verde { color: var(--verde); }
.cta-final-dark p {
  color: #c8c8c8;
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-final-dark .btns {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-final-dark .btn { padding: 16px 32px; font-size: 16px; }

/* ----- Sticky mobile CTA bar ----- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid var(--cinza-borda);
  box-shadow: 0 -4px 16px rgba(0,0,0,.10);
  padding: 8px;
  gap: 8px;
}
.sticky-mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 8px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.sticky-mobile-cta .smc-wpp { background: #25D366; color: #fff; }
.sticky-mobile-cta .smc-wpp:hover { background: #1fb958; }
.sticky-mobile-cta .smc-tel { background: var(--cinza-dark); color: #fff; }
.sticky-mobile-cta .smc-tel:hover { background: #000; }

/* Inline CTA buttons row entre seções */
.section-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ----- Outros serviços (rede de parceiros) ----- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-left: 4px solid var(--verde);
  border-radius: var(--r-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.partner-card:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
  border-left-color: var(--laranja);
}
.partner-card .partner-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--verde-soft);
  color: var(--laranja);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.partner-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--cinza-dark);
  margin-bottom: 3px;
  line-height: 1.3;
}
.partner-card p {
  font-size: 13.5px;
  color: var(--cinza-soft);
  line-height: 1.5;
  margin: 0;
}
.partners-foot {
  text-align: center;
  margin-top: 36px;
  font-size: 16px;
  color: var(--cinza);
}
.partners-foot strong { color: var(--cinza-dark); }

/* ----- Sidebar enhancements ----- */
.sidebar .sidebar-trust {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--cinza-soft);
  line-height: 1.7;
}
.sidebar .sidebar-trust strong { color: var(--cinza-dark); }

/* ============================================ MOBILE — páginas serviço */
@media (max-width: 1024px) {
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .urgency-banner { font-size: 12.5px; padding: 8px 0; }
  .urgency-banner .container { gap: 8px; }
  .proof-stripe { padding: 18px 0; }
  .proof-stripe .container { gap: 18px; }
  .proof-item { font-size: 13px; }
  .proof-item strong { font-size: 16px; }
  .svc-section { padding: 56px 0; }
  .svc-section .lead { margin-bottom: 32px; font-size: 15.5px; }
  .symptoms-grid { grid-template-columns: 1fr; gap: 14px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .partners-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-card { padding: 26px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .guarantee-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    text-align: center;
  }
  .guarantee-seal { margin: 0 auto; width: 120px; height: 120px; }
  .guarantee-seal .seal-num { font-size: 30px; }
  .cta-final-dark { padding: 70px 0; }
  .cta-final-dark .btn { width: 100%; }
  .sticky-mobile-cta { display: flex; padding-bottom: calc(8px + env(safe-area-inset-bottom)); }
  /* dar espaço pro float não colidir com sticky bar */
  .whats-float { bottom: 78px !important; }
  /* dar espaço pro sticky no fim do body */
  body.has-sticky-cta { padding-bottom: 70px; }
}


/* ============================================
   v=19 — Utility bar, sitelinks, pulse, garantia, galeria, regiões, agendamento, mapa
   ============================================ */

/* --- Utility Bar --- */
.utility-bar {
  background: linear-gradient(90deg, var(--laranja) 0%, var(--laranja-dark) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-bar-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.utility-bar-text svg { width: 16px; height: 16px; }
.utility-bar-text strong { font-weight: 700; }
.utility-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: var(--r-sm);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.utility-bar-cta:hover { background: rgba(255,255,255,0.28); transform: translateX(2px); }
.utility-bar-cta svg { width: 12px; height: 12px; }

@media (max-width: 768px) {
  .utility-bar { font-size: 12px; padding: 6px 0; }
  .utility-bar-text { font-size: 12px; }
  .utility-bar-cta { padding: 3px 9px; font-size: 12px; }
}
@media (max-width: 540px) {
  .utility-bar .container { justify-content: center; gap: 8px; }
  .utility-bar-text { gap: 6px; }
}

/* --- Sitelinks --- */
.sitelinks {
  background: #fff;
  border-bottom: 1px solid var(--cinza-borda);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  transition: top .3s ease;
}
.sitelinks .container {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 16px;
}
.sitelinks .container::-webkit-scrollbar { display: none; }
.sitelink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cinza-dark);
  background: var(--off-white);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s ease;
  flex-shrink: 0;
}
.sitelink:hover {
  background: var(--verde);
  color: var(--cinza-dark);
  transform: translateY(-1px);
}
.sitelink span { font-size: 14px; line-height: 1; }
.sitelink-cta {
  background: var(--laranja);
  color: #fff;
}
.sitelink-cta:hover { background: var(--cinza-dark); color: var(--verde); }
.navbar.scrolled + .sitelinks { top: var(--header-h-scroll); }

@media (max-width: 768px) {
  .sitelinks { top: var(--header-h-scroll); }
  .sitelink { font-size: 12px; padding: 7px 11px; }
  .sitelink span { font-size: 13px; }
}

/* --- Pulse Glow CTA --- */
@keyframes pulse-whatsapp-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 200, 0, 0.55), 0 4px 14px rgba(240, 200, 0, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(240, 200, 0, 0), 0 4px 22px rgba(240, 200, 0, 0.55); }
}
.pulse-glow { animation: pulse-whatsapp-glow 2.4s ease-in-out infinite; }

.counter { display: inline-block; }

/* --- Servico card highlight (câmera) --- */
.servico-card-highlight {
  position: relative;
  border: 2px solid var(--verde);
  background: linear-gradient(180deg, var(--verde-soft) 0%, #fff 100%);
}
.servico-tag-novo {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--laranja);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  text-transform: uppercase;
}

/* --- Region hero image (item 3 — imagem da região SP) --- */
.region-hero-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0 auto 40px;
  max-width: 1100px;
  aspect-ratio: 21/9;
  box-shadow: var(--shadow-lg);
}
.region-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.region-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.65) 0%, rgba(26,26,26,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 36px;
  color: #fff;
}
.region-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 8px;
  width: fit-content;
}
.region-hero-overlay h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .region-hero-image { aspect-ratio: 16/10; margin-bottom: 28px; }
  .region-hero-overlay { padding: 22px 20px; }
}

/* --- GARANTIA COMPROVADA --- */
.section-guarantee {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--cinza-dark) 0%, #2a1414 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-guarantee::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(240, 200, 0, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(220, 20, 20, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.section-guarantee .guarantee-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.section-guarantee .guarantee-seal {
  display: flex;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  background: none;
}
.section-guarantee .guarantee-seal-inner {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-dark) 100%);
  color: var(--cinza-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-shadow: 0 12px 48px rgba(240, 200, 0, 0.4);
  position: relative;
  animation: gc-pulse 3s ease-in-out infinite;
}
.section-guarantee .guarantee-seal-inner::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: gc-rotate 30s linear infinite;
}
@keyframes gc-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes gc-rotate { to { transform: rotate(360deg); } }
.section-guarantee .guarantee-seal-inner svg {
  width: 56px; height: 56px;
  color: var(--cinza-dark);
  margin-bottom: 8px;
}
.section-guarantee .guarantee-seal-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-guarantee .guarantee-seal-sub {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  max-width: 200px;
  opacity: 0.85;
}
.section-guarantee .guarantee-content .section-eyebrow { color: var(--verde); }
.section-guarantee .guarantee-content h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-guarantee .guarantee-content p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.section-guarantee .guarantee-content p strong { color: var(--verde); }
.section-guarantee .guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.section-guarantee .guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.5;
}
.section-guarantee .guarantee-list li svg {
  width: 22px; height: 22px;
  color: var(--verde);
  flex-shrink: 0;
  margin-top: 2px;
}
.section-guarantee .guarantee-list li strong { color: #fff; font-weight: 700; }

@media (max-width: 900px) {
  .section-guarantee .guarantee-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .section-guarantee .guarantee-list li { text-align: left; }
}
@media (max-width: 540px) {
  .section-guarantee .guarantee-seal-inner { width: 220px; height: 220px; }
  .section-guarantee .guarantee-seal-title { font-size: 20px; }
  .section-guarantee { padding: 64px 0; }
}

/* --- GALERIA --- */
.galeria-section { padding: 88px 0; background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 16px;
}
.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--verde);
  opacity: 0.6;
}
.gallery-placeholder span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cta {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--cinza-soft);
}
.gallery-cta em { font-style: italic; }

/* --- REGIÕES --- */
.section-regions { padding: 88px 0; background: #fff; }
.section-regions .regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.section-regions .regions-col {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 26px 22px;
  border-top: 4px solid var(--verde);
  transition: transform .25s ease, box-shadow .25s ease;
}
.section-regions .regions-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.section-regions .regions-col:nth-child(2) { border-top-color: var(--laranja); }
.section-regions .regions-col:nth-child(3) { border-top-color: var(--cinza-dark); }
.section-regions .regions-col:nth-child(4) { border-top-color: #1da1f2; }
.section-regions .regions-col h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cinza-borda);
}
.section-regions .regions-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.section-regions .regions-col li {
  font-size: 14px;
  color: var(--cinza-soft);
  padding: 4px 0;
  position: relative;
  padding-left: 14px;
}
.section-regions .regions-col li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--verde);
  font-weight: 800;
}
.section-regions .regions-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--off-white) 0%, #fff 100%);
  border: 2px dashed var(--verde);
  border-radius: var(--r-md);
  padding: 36px 28px;
}
.section-regions .regions-cta h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 8px;
}
.section-regions .regions-cta p {
  font-size: 16px;
  color: var(--cinza-soft);
  margin-bottom: 24px;
}
.section-regions .regions-cta p strong { color: var(--laranja); }
.section-regions .regions-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .section-regions .regions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .section-regions .regions-grid { grid-template-columns: 1fr; gap: 16px; }
  .section-regions { padding: 56px 0; }
}

/* --- Agendamento --- */
.appointment-page {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%);
  min-height: 80vh;
}
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 32px;
}
.appointment-info h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--cinza-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.appointment-info p {
  font-size: 16px;
  color: var(--cinza-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}
.appointment-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}
.appointment-info ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--cinza-dark);
  font-size: 15px;
}
.appointment-info ul li svg {
  width: 22px; height: 22px;
  color: var(--laranja);
  flex-shrink: 0;
}
.appointment-form {
  background: #fff;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.appointment-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 6px;
}
.appointment-form .form-sub {
  font-size: 14px;
  color: var(--cinza-soft);
  margin-bottom: 24px;
}
.appointment-form .form-group { margin-bottom: 16px; }
.appointment-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--cinza-dark);
  margin-bottom: 6px;
}
.appointment-form .form-group label .req { color: var(--laranja); }
.appointment-form .form-group input,
.appointment-form .form-group select,
.appointment-form .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--cinza-dark);
  background: #fff;
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.appointment-form .form-group input:focus,
.appointment-form .form-group select:focus,
.appointment-form .form-group textarea:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(240, 200, 0, 0.18);
}
.appointment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.appointment-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 16px;
}
.appointment-form .form-note {
  font-size: 12px;
  color: var(--cinza-soft);
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .appointment-grid { grid-template-columns: 1fr; gap: 32px; }
  .appointment-form .form-row { grid-template-columns: 1fr; }
  .appointment-form { padding: 28px 22px; }
}

/* --- Mapa do Site --- */
.sitemap-page { padding: 80px 0 60px; background: var(--off-white); min-height: 70vh; }
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.sitemap-col {
  background: #fff;
  border-radius: var(--r-md);
  padding: 24px;
  border-left: 4px solid var(--verde);
}
.sitemap-col h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--cinza-dark);
  margin-bottom: 12px;
}
.sitemap-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.sitemap-col a {
  font-size: 14px;
  color: var(--cinza-soft);
  text-decoration: none;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid var(--cinza-borda);
  transition: color .2s ease, padding .2s ease;
}
.sitemap-col a:hover {
  color: var(--laranja);
  padding-left: 6px;
}
