/* ============================================
   LD DESENTUPIDORA — GOIÂNIA
   Posicionamento: Premium B2B (Condomínios + Empresas)
   Paleta: cores da logo — Amarelo dourado #F0C800 + Preto #1A1A1A + Vermelho #DC1414
   ============================================ */

:root {
  /* Paleta principal */
  --primary: #F0C800;
  --primary-dark: #C9A700;
  --primary-light: #F5DC55;
  --primary-soft: #FFF4C4;

  --dark: #1A1A1A;
  --dark-2: #0F0F0F;
  --gray-text: #545454;
  --gray-soft: #6B6B6B;
  --gray-border: #E5E5E5;

  --accent: #DC1414;
  --accent-dark: #B01010;

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

  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

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

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 26, 26, 0.12);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.4);

  /* Radius */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  /* Layout */
  --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(--gray-text);
  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: 96px 0; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  height: var(--header-h);
  background: rgba(26, 26, 26, 0.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: var(--shadow-dark);
  border-bottom-color: rgba(240, 200, 0, 0.25);
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.nav-logo span {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links > a,
.nav-dropdown-toggle {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  padding: 8px 0;
  position: relative;
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links > a:hover,
.nav-dropdown-toggle:hover { color: var(--primary); }
.nav-links > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links > a:hover::after,
.nav-dropdown-toggle:hover::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform .25s ease; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 360px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  display: grid;
  gap: 4px;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear 0s;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: background .2s ease, color .2s ease;
}
.nav-dropdown-menu a svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.nav-dropdown-menu a:hover { background: var(--off-white); color: var(--accent); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-phone, .btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-phone { color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-phone:hover { border-color: var(--primary); color: var(--primary); }
.btn-phone svg { width: 16px; height: 16px; }
.btn-whatsapp-nav { background: var(--primary); color: var(--dark); }
.btn-whatsapp-nav:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-whatsapp-nav svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .2s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
  z-index: 998;
}
.mobile-overlay.active {
  opacity: 1; visibility: visible;
  transition: opacity .3s ease, visibility 0s linear 0s;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  top: 0; right: -100%; left: auto;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: var(--white);
  padding: 90px 28px 40px;
  box-shadow: var(--shadow-lg);
  transition: right .35s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  color: var(--white) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { background: rgba(240, 200, 0, 0.08) !important; color: var(--primary) !important; }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }
.mobile-menu .btn.btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.mobile-menu .btn.btn-outline:hover { background: var(--white); color: var(--dark); }
.mobile-menu a {
  padding: 14px 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--r-sm);
  transition: background .2s ease;
}
/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: var(--dark); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-on-dark.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-on-dark.btn-outline:hover { background: var(--primary); color: var(--dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: calc(var(--header-h) + 96px);
  padding-bottom: 112px;
  position: relative;
  overflow: hidden;
  background: var(--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=1");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  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); }
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 780px;
  animation: heroFadeIn .9s ease-out both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  color: var(--dark) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.hero p {
  color: var(--gray-text) !important;
  max-width: 720px;
}
.hero p strong {
  color: var(--accent);
  font-weight: 800;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1px;
}
.hero-badge {
  background: var(--white);
  border: 1px solid var(--gray-border);
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.hero-trust {
  border-top: 1px solid rgba(26,26,26,0.15);
}
.hero-trust-item {
  color: var(--gray-text);
}
.hero-trust-item strong { color: var(--dark); font-weight: 800; }
.hero-trust-item svg { color: var(--accent); }
.hero .btn-outline {
  color: var(--dark);
  border-color: rgba(26,26,26,0.35);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--white);
}
@media (max-width: 768px) {
  .hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 80px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero h1 .highlight {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 0 8px;
  border-radius: 4px;
  color: var(--dark);
}
.hero p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--gray-soft);
  margin-bottom: 36px;
  max-width: 720px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-border);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-text);
}
.hero-trust-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.hero-trust-item strong { color: var(--dark); font-weight: 700; }

/* ============================================
   AUTHORITY (números + selos)
   ============================================ */
.authority {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-border);
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.authority-item {
  text-align: center;
  padding: 16px;
}
.authority-number {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.authority-number span { color: var(--accent); }
.authority-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   SECTIONS COMUNS
   ============================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .section-title,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark .section-subtitle,
.section-dark p { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-dark .eyebrow { color: var(--primary); }

.section-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-align: center;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-soft);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  line-height: 1.55;
}
.section-title.left, .section-subtitle.left { text-align: left; margin-left: 0; }

/* ============================================
   PARA QUEM ATENDEMOS (4 personas B2B)
   ============================================ */
.audiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.audience-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-soft);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .25s ease;
}
.audience-icon svg { width: 28px; height: 28px; color: var(--accent); }
.audience-card:hover .audience-icon { background: var(--primary); }
.audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.audience-card p {
  font-size: 14px;
  color: var(--gray-soft);
  line-height: 1.55;
}

/* ============================================
   SERVIÇOS GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--dark);
  color: var(--primary);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-soft);
  margin-bottom: 22px;
  line-height: 1.55;
  flex-grow: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: gap .25s ease, color .25s ease;
}
.service-card-link svg { width: 14px; height: 14px; }
.service-card-link:hover { color: var(--accent); gap: 10px; }

/* ============================================
   PREMIUM SECTION (hidrojateamento estrela)
   ============================================ */
.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.premium-content .eyebrow { color: var(--primary); }
.premium-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.premium-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 24px;
}
.premium-features {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.premium-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.premium-feature svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.premium-visual {
  background:
    linear-gradient(135deg, rgba(205, 220, 73, 0.1) 0%, transparent 50%),
    var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 48px;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.premium-visual-icon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(205, 220, 73, 0.3);
}
.premium-visual-icon svg { width: 100px; height: 100px; color: var(--dark); }
.premium-stat {
  position: absolute;
  background: var(--white);
  color: var(--dark);
  padding: 16px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-dark);
}
.premium-stat strong { display: block; font-size: 24px; font-weight: 900; color: var(--accent); line-height: 1; }
.premium-stat span { font-size: 12px; color: var(--gray-soft); font-weight: 500; }
.premium-stat-1 { top: 30px; left: -20px; }
.premium-stat-2 { bottom: 40px; right: -10px; }

/* ============================================
   COMO ATENDEMOS (timeline B2B)
   ============================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--off-white);
  padding: 0 12px;
}
.timeline-step.on-white { background: var(--white); }
.timeline-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 20px;
  border: 4px solid var(--off-white);
  box-shadow: var(--shadow-md);
}
.timeline-step.on-white .timeline-number { border-color: var(--white); }
.timeline-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 14px;
  color: var(--gray-soft);
  line-height: 1.55;
}

/* ============================================
   DEPOIMENTOS B2B
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -12px;
  left: 22px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--primary);
  line-height: 1;
  font-weight: 900;
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.65;
  margin: 16px 0 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--gray-border);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-role {
  font-size: 12px;
  color: var(--gray-soft);
}

/* ============================================
   CONTATO
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: stretch;
}
.contact-info {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  padding: 36px 32px;
}
.contact-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
  align-items: flex-start;
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-soft);
  color: var(--accent);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-item p,
.contact-item a {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
}
.contact-item a:hover { color: var(--accent); }
.map-wrapper {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  min-height: 420px;
}
.map-wrapper iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
  background:
    linear-gradient(135deg, rgba(205, 220, 73, 0.95) 0%, rgba(184, 200, 54, 0.95) 100%),
    var(--dark);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.1) 0, transparent 40%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-content { max-width: 760px; margin: 0 auto; }
.cta-content h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-content h2 .highlight {
  background: var(--dark);
  color: var(--primary);
  padding: 0 12px;
  border-radius: 4px;
}
.cta-content p {
  font-size: 17px;
  color: rgba(26,26,26,0.85);
  margin-bottom: 32px;
  font-weight: 500;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary {
  background: var(--dark);
  color: var(--primary);
}
.cta-section .btn-primary:hover { background: var(--dark-2); }
.cta-section .btn-outline {
  border-color: var(--dark);
  color: var(--dark);
}
.cta-section .btn-outline:hover { background: var(--dark); color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
}
.footer-brand h3 span {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 380px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--primary); font-weight: 600; }

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 50;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: pulse-whatsapp 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PÁGINAS DE SERVIÇO
   ============================================ */
.page-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 64px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-border);
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--gray-soft);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero .lead {
  font-size: 18px;
  color: var(--gray-soft);
  max-width: 760px;
  line-height: 1.55;
}
.page-content { padding: 64px 0; }
.page-content .container { max-width: 880px; }
.page-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin: 32px 0 16px;
  letter-spacing: -0.015em;
}
.page-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 12px;
}
.page-content p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.page-content ul {
  margin: 16px 0 24px 24px;
  color: var(--gray-text);
  line-height: 1.75;
}
.page-content ul li { margin-bottom: 8px; }
.page-content .info-box {
  background: var(--primary-soft);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: var(--r-sm);
  margin: 24px 0;
}
.page-content .info-box p:last-child { margin-bottom: 0; }

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .audiences-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .premium-grid { grid-template-columns: 1fr; gap: 48px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper { min-height: 320px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .authority-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .audiences-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .premium-stat-1 { top: 12px; left: 8px; }
  .premium-stat-2 { bottom: 12px; right: 8px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .hero-trust { gap: 18px 24px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
}

/* ==========================================================================
   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 B2B — replicado do SP, paleta Goiânia
   ============================================================ */

/* ----- Stripe de prova social (depois do hero) ----- */
.proof-stripe {
  background: var(--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(--primary);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.proof-item .stars { color: var(--primary); letter-spacing: 1px; }

/* ----- svc-section ----- */
.svc-section { padding: 80px 0; background: var(--white); }
.svc-section.dark { background: var(--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(--dark);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -.02em;
}
.svc-section.dark h2 { color: #fff; }
.svc-section h2 .verde,
.svc-section h2 .primary { color: var(--primary); }
.svc-section h2 .laranja,
.svc-section h2 .accent { color: var(--accent); }
.svc-section .lead {
  font-size: 17px;
  color: var(--gray-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(--gray-border);
  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(--primary);
}
.symptom-card .symptom-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--accent);
  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(--dark);
  margin-bottom: 8px;
}
.symptom-card p {
  font-size: 14.5px;
  color: var(--gray-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(--gray-border);
}
.step-card .step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--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(--dark);
  margin-bottom: 6px;
}
.step-card p {
  font-size: 14px;
  color: var(--gray-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(--gray-border);
  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(--dark);
  color: var(--primary);
  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(--dark);
  margin-bottom: 8px;
}
.case-card p {
  font-size: 15px;
  color: var(--gray-soft);
  line-height: 1.55;
  margin-bottom: 12px;
}
.case-card ul { padding-left: 18px; }
.case-card ul li {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 4px;
}
.case-card ul li::marker { color: var(--primary-dark); }

/* ----- Outros serviços (cross-sell) ----- */
.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(--gray-border);
  border-left: 4px solid var(--primary);
  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;
  text-decoration: none;
}
.partner-card:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
  border-left-color: var(--accent);
}
.partner-card .partner-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--primary-soft);
  color: var(--accent);
  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(--dark);
  margin-bottom: 3px;
  line-height: 1.3;
}
.partner-card p {
  font-size: 13.5px;
  color: var(--gray-soft);
  line-height: 1.5;
  margin: 0;
}
.partners-foot {
  text-align: center;
  margin-top: 36px;
  font-size: 16px;
  color: var(--gray-text);
}
.partners-foot strong { color: var(--dark); }

/* ----- Diferenciais (6 cards) ----- */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dif-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.dif-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.dif-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.dif-card-head .dif-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.dif-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
}
.dif-card p {
  font-size: 14.5px;
  color: var(--gray-soft);
  line-height: 1.55;
}

/* ----- Depoimentos ----- */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dep-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  padding: 28px;
}
.dep-stars { color: var(--primary); letter-spacing: 2px; font-size: 16px; margin-bottom: 14px; }
.dep-card p {
  font-size: 15.5px;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.dep-card .dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dark);
  border-top: 1px solid var(--gray-border);
  padding-top: 14px;
}
.dep-card .dep-author strong { display: block; font-weight: 700; }
.dep-card .dep-author span { color: var(--gray-soft); font-size: 13px; }

/* ----- Áreas grid ----- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.area-card .area-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.area-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.area-card p {
  font-size: 13.5px;
  color: var(--gray-soft);
  line-height: 1.5;
}

/* ----- 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(--gray-border);
}
.form-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-card .form-sub {
  color: var(--gray-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(--gray-border);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(240,200,0,.20);
}
.form-input::placeholder { color: #b6b6b6; }
textarea.form-input { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 16px 20px;
  background: var(--accent);
  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(--accent-dark); transform: translateY(-1px); }
.form-card .form-foot {
  text-align: center;
  font-size: 13px;
  color: var(--gray-soft);
  margin-top: 14px;
}
.form-card .form-foot strong { color: var(--dark); }

/* ----- FAQ Accordion ----- */
.accordion {
  max-width: 820px;
  margin: 0 auto;
}
.accordion-item {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.accordion-item.open {
  border-color: var(--primary);
  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(--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(--accent);
  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(--gray-text);
  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(--primary-soft) 0%, #fff 100%);
  border: 2px solid var(--primary);
  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(--dark);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  border: 4px solid var(--primary);
  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(--dark);
  margin-bottom: 10px;
}
.guarantee-card p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ----- CTA final imersivo (escuro) ----- */
.cta-final-dark {
  background: var(--dark);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(240,200,0,.10) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(220,20,20,.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,
.cta-final-dark h2 .primary { color: var(--primary); }
.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; }

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

/* btn-outline-light (para hero escuro) e btn-outline-dark (claro) — variantes */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--gray-border);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--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); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: 1fr; gap: 16px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .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; }
  .dif-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .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%; }
}

/* ============================
   URGENCY BANNER (topo, abaixo da navbar)
   ============================ */
.urgency-banner {
  background: linear-gradient(90deg, var(--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: var(--whatsapp);
  display: inline-block;
  animation: pulseDot 2s infinite;
  box-shadow: 0 0 0 0 rgba(37,211,102,.7);
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.7); }
  70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.urgency-banner strong { color: var(--primary); }
.urgency-banner a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.urgency-banner a:hover { color: #fff; }
.urgency-banner + .page-hero { margin-top: 0; }

/* ============================
   STICKY MOBILE CTA (rodapé fixo mobile)
   ============================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid var(--gray-border);
  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: var(--whatsapp); color: #fff; }
.sticky-mobile-cta .smc-wpp:hover { background: var(--whatsapp-dark); }
.sticky-mobile-cta .smc-tel { background: var(--dark); color: #fff; }
.sticky-mobile-cta .smc-tel:hover { background: #000; }

@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; padding-bottom: calc(8px + env(safe-area-inset-bottom)); }
  .whatsapp-float { bottom: 78px !important; }
  body { padding-bottom: 70px; }
  .urgency-banner { font-size: 13px; padding: 8px 0; }
  .urgency-banner .container { gap: 10px; }
}

/* ============================================
   v=15 — Utility bar, sitelinks, pulse, garantia, galeria, regiões
   ============================================ */

/* --- Utility Bar (topo) --- */
.utility-bar {
  background: linear-gradient(90deg, var(--accent) 0%, #b81212 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; }

/* Ajustar position do navbar abaixo da utility bar */
body { padding-top: 0; }

@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 (atalhos rápidos) --- */
.sitelinks {
  background: #fff;
  border-bottom: 1px solid var(--gray-border);
  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(--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(--primary);
  color: var(--dark);
  transform: translateY(-1px);
}
.sitelink span {
  font-size: 14px;
  line-height: 1;
}
.sitelink-cta {
  background: var(--accent);
  color: #fff;
}
.sitelink-cta:hover { background: var(--dark); color: var(--primary); }

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

/* --- Scroll-shrink: navbar quando scrolled, sitelinks topo segue --- */
.navbar.scrolled + .sitelinks { top: var(--header-h-scroll); }

/* --- Pulse Glow (CTA WhatsApp) --- */
@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;
}

/* --- Hover underline animado já existe (.nav-links a::after) — reforçar --- */
.nav-links > a, .nav-dropdown-toggle { transition: color .25s ease; }
.nav-links > a::after, .nav-dropdown-toggle::after { transition: transform .35s cubic-bezier(0.65, 0, 0.35, 1); }

/* --- Contadores animados (preparar) --- */
.counter { display: inline-block; }

/* --- Garantia Comprovada --- */
.section-guarantee {
  padding: 96px 0;
  background: linear-gradient(135deg, #1a1a1a 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;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.guarantee-seal {
  display: flex;
  justify-content: center;
}
.guarantee-seal-inner {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #d4a800 100%);
  color: var(--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: guarantee-pulse 3s ease-in-out infinite;
}
.guarantee-seal-inner::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: guarantee-rotate 30s linear infinite;
}
@keyframes guarantee-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes guarantee-rotate {
  to { transform: rotate(360deg); }
}
.guarantee-seal-inner svg {
  width: 56px;
  height: 56px;
  color: var(--dark);
  margin-bottom: 8px;
}
.guarantee-seal-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.guarantee-seal-sub {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  max-width: 200px;
  opacity: 0.8;
}
.guarantee-content .eyebrow { color: var(--primary); }
.guarantee-content h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.guarantee-content p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.guarantee-content p strong { color: var(--primary); }
.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.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;
}
.guarantee-list li svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee-list li strong { color: #fff; font-weight: 700; }

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

/* --- Galeria de fotos --- */
.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(--primary);
  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(--gray-soft);
}
.gallery-cta em { font-style: italic; }

/* --- Regiões Atendidas --- */
.section-regions {
  padding: 96px 0;
  background: #fff;
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.regions-col {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 28px 24px;
  border-top: 4px solid var(--primary);
  transition: transform .25s ease, box-shadow .25s ease;
}
.regions-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.regions-col:nth-child(2) { border-top-color: var(--accent); }
.regions-col:nth-child(3) { border-top-color: var(--dark); }
.regions-col h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
}
.regions-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}
.regions-col li {
  font-size: 14px;
  color: var(--gray-soft);
  padding: 4px 0;
  position: relative;
  padding-left: 14px;
}
.regions-col li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}
.regions-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--off-white) 0%, #fff 100%);
  border: 2px dashed var(--primary);
  border-radius: var(--r-md);
  padding: 36px 28px;
}
.regions-cta h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.regions-cta p {
  font-size: 16px;
  color: var(--gray-soft);
  margin-bottom: 24px;
}
.regions-cta p strong { color: var(--accent); }
.regions-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .regions-grid { grid-template-columns: 1fr; gap: 20px; }
  .regions-col ul { grid-template-columns: 1fr 1fr; }
  .section-regions { padding: 64px 0; }
}
@media (max-width: 540px) {
  .regions-col ul { grid-template-columns: 1fr; }
  .regions-cta { padding: 28px 20px; }
}

/* --- Agendamento Form (página /agendamento) --- */
.appointment-page {
  padding: 100px 0 80px;
  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(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.appointment-info p {
  font-size: 16px;
  color: var(--gray-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(--dark);
  font-size: 15px;
}
.appointment-info ul li svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.appointment-form {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.appointment-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.appointment-form .form-sub {
  font-size: 14px;
  color: var(--gray-soft);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(240, 200, 0, 0.18);
}
.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;
}
.form-note {
  font-size: 12px;
  color: var(--gray-soft);
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .appointment-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .appointment-form { padding: 28px 22px; }
}

/* --- Mapa do Site --- */
.sitemap-page {
  padding: 100px 0 80px;
  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(--primary);
}
.sitemap-col h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--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(--gray-soft);
  text-decoration: none;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-border);
  transition: color .2s ease, padding .2s ease;
}
.sitemap-col a:hover {
  color: var(--accent);
  padding-left: 6px;
}
