/*
Theme Name:   Desentupidora Modelo Child
Theme URI:    https://seusite.com.br
Description:  Tema filho para desentupidoras — White Label. Cores controladas via painel admin.
Author:       Agência
Version:      1.0.0
Template:     hello-elementor
Text Domain:  desentupidora-modelo
*/

/* ============================================================
   VARIÁVEIS GLOBAIS — controladas via painel WP
   Injetadas dinamicamente pelo plugin Desentupidora Modelo
   ============================================================ */
:root {
  --hf-primary:       #1B3F72;   /* Azul escuro — cor principal */
  --hf-primary-dark:  #122B52;   /* Azul mais escuro — hover, header */
  --hf-primary-light: #2563EB;   /* Azul médio — links, destaques */
  --hf-accent:        #16A34A;   /* Verde — CTAs primários, urgência positiva */
  --hf-accent-dark:   #15803D;   /* Verde escuro — hover dos botões */
  --hf-urgent:        #DC2626;   /* Vermelho — urgência, "Ligar", emergência */
  --hf-urgent-dark:   #B91C1C;
  --hf-text:          #1E293B;   /* Texto principal */
  --hf-text-muted:    #64748B;   /* Texto secundário */
  --hf-bg:            #FFFFFF;
  --hf-bg-alt:        #F0F4F8;   /* Fundo alternativo de seções */
  --hf-bg-dark:       #0F1F3D;   /* Fundo escuro (CTA, footer) */
  --hf-border:        #CBD5E1;
  --hf-white:         #FFFFFF;

  /* Tipografia */
  --hf-font-display:  'Barlow Condensed', sans-serif;
  --hf-font-body:     'Inter', sans-serif;

  /* Espaçamentos base */
  --hf-section-py:    80px;
  --hf-section-py-sm: 48px;
  --hf-container:     1200px;
  --hf-radius:        8px;
  --hf-radius-lg:     16px;

  /* Sombras */
  --hf-shadow-sm:     0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --hf-shadow-md:     0 4px 16px rgba(27,63,114,.12);
  --hf-shadow-lg:     0 10px 40px rgba(27,63,114,.18);

  /* Transições */
  --hf-transition:    all .22s ease;
}

/* ============================================================
   RESET E BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--hf-font-body);
  color: var(--hf-text);
  background: var(--hf-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--hf-primary-light);
  transition: var(--hf-transition);
}
a:hover { color: var(--hf-accent); }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--hf-font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hf-text);
}

.hf-display {
  font-family: var(--hf-font-display);
  font-weight: 800;
  letter-spacing: -.5px;
}

.hf-overline {
  font-family: var(--hf-font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hf-accent);
  display: inline-block;
  margin-bottom: 8px;
}
/* Em fundos escuros, garante verde claro/legível */
.hf-section--dark .hf-overline,
.hf-cta-urgencia .hf-overline { color: #4ADE80 !important; }

/* ============================================================
   CONTAINER
   ============================================================ */
.hf-container {
  max-width: var(--hf-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.hf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--hf-radius);
  font-family: var(--hf-font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--hf-transition);
  white-space: nowrap;
}

.hf-btn-primary {
  background: var(--hf-accent);
  color: var(--hf-white);
  border-color: var(--hf-accent);
}
.hf-btn-primary:hover {
  background: var(--hf-accent-dark);
  border-color: var(--hf-accent-dark);
  color: var(--hf-white);
  transform: translateY(-1px);
  box-shadow: var(--hf-shadow-md);
}

.hf-btn-urgent {
  background: var(--hf-urgent);
  color: var(--hf-white);
  border-color: var(--hf-urgent);
}
.hf-btn-urgent:hover {
  background: var(--hf-urgent-dark);
  border-color: var(--hf-urgent-dark);
  color: var(--hf-white);
  transform: translateY(-1px);
}

.hf-btn-outline {
  background: transparent;
  color: var(--hf-white);
  border-color: var(--hf-white);
}
.hf-btn-outline:hover {
  background: var(--hf-white);
  color: var(--hf-primary);
}

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

.hf-btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.hf-btn-sm {
  padding: 10px 20px;
  font-size: .875rem;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.hf-topbar {
  background: var(--hf-bg-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 0;
  letter-spacing: .3px;
}
.hf-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hf-topbar__msg {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hf-topbar__msg .dot {
  width: 8px; height: 8px;
  background: var(--hf-accent);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
.hf-topbar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hf-topbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--hf-white);
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
}
.hf-topbar__phone:hover { color: var(--hf-accent); }

/* ============================================================
   HEADER STICKY
   ============================================================ */
.hf-header {
  background: var(--hf-white);
  box-shadow: var(--hf-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s ease;
}
.hf-header.scrolled {
  box-shadow: var(--hf-shadow-md);
}
.hf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.hf-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hf-logo__icon {
  width: 44px; height: 44px;
  background: var(--hf-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.hf-logo__text {
  font-family: var(--hf-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hf-primary);
  line-height: 1.1;
}
.hf-logo__text span { color: var(--hf-accent); }
.hf-logo__sub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hf-text-muted);
  display: block;
}

/* Navegação */
.hf-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.hf-nav__item { position: relative; }
.hf-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--hf-text);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--hf-transition);
}
.hf-nav__link:hover,
.hf-nav__item.active .hf-nav__link {
  color: var(--hf-primary);
  background: var(--hf-bg-alt);
}
.hf-nav__link svg { transition: transform .2s; }
.hf-nav__item:hover .hf-nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.hf-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius);
  box-shadow: var(--hf-shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  z-index: 100;
}
.hf-dropdown.wide { min-width: 520px; columns: 2; gap: 0; }
.hf-nav__item:hover .hf-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hf-dropdown__group-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hf-primary);
  padding: 8px 10px 4px;
  border-bottom: 1px solid var(--hf-bg-alt);
  margin-bottom: 4px;
  break-inside: avoid;
}
.hf-dropdown a {
  display: block;
  padding: 7px 10px;
  font-size: .875rem;
  color: var(--hf-text);
  text-decoration: none;
  border-radius: 5px;
  break-inside: avoid;
}
.hf-dropdown a:hover {
  background: var(--hf-bg-alt);
  color: var(--hf-primary);
}

/* Header CTA */
.hf-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.hf-header__phone-mini {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}
.hf-header__phone-mini .label {
  font-size: .65rem;
  font-weight: 600;
  color: var(--hf-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hf-header__phone-mini .number {
  font-family: var(--hf-font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--hf-primary);
}

/* Mobile toggle */
.hf-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--hf-primary);
}

/* ============================================================
   HERO
   ============================================================ */
.hf-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hf-bg-dark);
}
.hf-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.38);
  transform: scale(1.03);
  transition: transform 8s ease-out;
}
.hf-hero.loaded .hf-hero__bg { transform: scale(1); }

/* Grade diagonal de tensão — assinatura visual */
.hf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,63,114,.65) 0%,
    rgba(15,31,61,.10) 60%,
    transparent 100%
  );
  z-index: 1;
}
/* Faixa verde de acento inferior */
.hf-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 45%;
  height: 4px;
  background: var(--hf-accent);
  z-index: 2;
}

.hf-hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 80px 0;
}
.hf-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,.15);
  border: 1px solid rgba(22,163,74,.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: #4ADE80;
  letter-spacing: .5px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hf-hero__badge .dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
.hf-hero__title {
  font-family: var(--hf-font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--hf-white);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -.5px;
}
.hf-hero__title .accent { color: #4ADE80; }
.hf-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.80);
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.65;
}
.hf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hf-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hf-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
}
.hf-hero__trust-item svg { color: #4ADE80; flex-shrink: 0; }

/* ============================================================
   SEÇÕES BASE
   ============================================================ */
.hf-section {
  padding: var(--hf-section-py) 0;
}
.hf-section--alt { background: var(--hf-bg-alt); }
.hf-section--dark {
  background: var(--hf-bg-dark);
  color: var(--hf-white);
}
.hf-section--dark h2,
.hf-section--dark h3 { color: var(--hf-white); }

.hf-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.hf-section__title {
  font-family: var(--hf-font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--hf-text);
  margin: 8px 0 16px;
}
.hf-section--dark .hf-section__title { color: var(--hf-white); }
.hf-section__desc {
  font-size: 1rem;
  color: var(--hf-text-muted);
  line-height: 1.7;
}
.hf-section--dark .hf-section__desc { color: rgba(255,255,255,.7); }

/* Divisor com linha e acento */
.hf-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 12px;
}
.hf-divider__line {
  width: 40px; height: 2px;
  background: var(--hf-border);
}
.hf-divider__dot {
  width: 8px; height: 8px;
  background: var(--hf-accent);
  border-radius: 50%;
}

/* ============================================================
   CARDS BASE
   ============================================================ */
.hf-card {
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-lg);
  padding: 32px 28px;
  transition: var(--hf-transition);
}
.hf-card:hover {
  box-shadow: var(--hf-shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.hf-card__icon {
  width: 56px; height: 56px;
  background: var(--hf-bg-alt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--hf-transition);
  color: var(--hf-primary);
}
.hf-card:hover .hf-card__icon {
  background: var(--hf-primary);
  color: var(--hf-white);
}
.hf-card__title {
  font-family: var(--hf-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hf-text);
  margin: 0 0 10px;
}
.hf-card__text {
  font-size: .9rem;
  color: var(--hf-text-muted);
  line-height: 1.65;
  margin: 0 0 16px;
}
.hf-card__link {
  font-size: .875rem;
  font-weight: 700;
  color: var(--hf-primary-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hf-card__link:hover { color: var(--hf-accent); gap: 8px; }

/* ============================================================
   GRIDS
   ============================================================ */
.hf-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hf-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hf-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hf-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hf-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hf-grid-4,
  .hf-grid-3,
  .hf-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   MÓDULO — COUNTERS (Sobre resumo)
   ============================================================ */
.hf-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-radius: var(--hf-radius-lg);
}
/* Variante com fundo escuro (opcional) */
.hf-counters--primary {
  background: var(--hf-primary);
  gap: 0;
  overflow: hidden;
}
.hf-counter {
  padding: 24px 16px;
  text-align: center;
  background: var(--hf-white);
  border-radius: var(--hf-radius);
  border: 1px solid var(--hf-border);
}
.hf-counters--primary .hf-counter {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
}
.hf-counters--primary .hf-counter:last-child { border-right: none; }
.hf-counter__num {
  font-family: var(--hf-font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--hf-primary);
  line-height: 1;
}
.hf-counters--primary .hf-counter__num { color: var(--hf-white); }
.hf-counter__label {
  font-size: .78rem;
  color: var(--hf-text-muted);
  font-weight: 700;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.hf-counters--primary .hf-counter__label { color: rgba(255,255,255,.65); }
@media (max-width: 640px) {
  .hf-counters { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MÓDULO — DIFERENCIAIS
   ============================================================ */
.hf-diff {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--hf-white);
  border-radius: var(--hf-radius);
  border-left: 4px solid var(--hf-accent);
  box-shadow: var(--hf-shadow-sm);
  transition: var(--hf-transition);
}
.hf-diff:hover {
  box-shadow: var(--hf-shadow-md);
  transform: translateX(4px);
}
.hf-diff__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--hf-accent) 0%, var(--hf-primary-light) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--hf-white);
}
.hf-diff__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hf-text);
  margin: 0 0 4px;
}
.hf-diff__text {
  font-size: .875rem;
  color: var(--hf-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   MÓDULO — COMO FUNCIONA
   ============================================================ */
.hf-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.hf-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--hf-primary-light), var(--hf-accent));
  z-index: 0;
}
.hf-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.hf-step__num {
  width: 72px; height: 72px;
  background: var(--hf-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--hf-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hf-white);
  border: 4px solid var(--hf-white);
  box-shadow: var(--hf-shadow-md);
}
.hf-step:last-child .hf-step__num { background: var(--hf-accent); }
.hf-step__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--hf-text);
  margin: 0 0 6px;
}
.hf-step__text {
  font-size: .82rem;
  color: var(--hf-text-muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 768px) {
  .hf-steps { grid-template-columns: 1fr; gap: 28px; }
  .hf-steps::before { top: 0; bottom: 0; left: 36px; right: auto; width: 2px; height: auto; }
  .hf-step { display: flex; gap: 20px; text-align: left; align-items: flex-start; }
  .hf-step__num { flex-shrink: 0; margin: 0; width: 56px; height: 56px; font-size: 1.1rem; }
}

/* ============================================================
   MÓDULO — REGIÕES DE ATENDIMENTO
   ============================================================ */
/* ============================================================
   GRID DE CIDADES — cards clicáveis em múltiplas colunas
   ============================================================ */
.hf-cidades-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) { .hf-cidades-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .hf-cidades-cards { grid-template-columns: 1fr; } }

/* Card individual de cidade */
.hf-cidade-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid var(--hf-border);
  border-radius: var(--hf-radius);
  text-decoration: none;
  color: var(--hf-text);
  transition: var(--hf-transition);
}
.hf-cidade-card:hover {
  border-color: var(--hf-primary-light);
  background: #F0F4FA;
  transform: translateY(-2px);
  box-shadow: var(--hf-shadow-md);
}
.hf-cidade-card__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}
.hf-cidade-card__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.hf-cidade-card__nome {
  font-weight: 700;
  font-size: .9rem;
  color: var(--hf-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hf-cidade-card__regiao {
  font-size: .72rem;
  color: var(--hf-text-muted);
  margin-top: 1px;
}
.hf-cidade-card__seta {
  margin-left: auto;
  color: var(--hf-text-muted);
  font-size: 1rem;
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
}
.hf-cidade-card:hover .hf-cidade-card__seta {
  color: var(--hf-primary);
  transform: translateX(4px);
}

/* Grid com múltiplas regiões (agrupado) */
.hf-cidades-por-regiao {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hf-cidades-grupo__titulo {
  font-family: var(--hf-font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hf-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--hf-accent);
  margin-bottom: 16px;
}

/* Compatibilidade com layout antigo (hf-regioes) */
.hf-regioes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hf-regiao__title {
  font-family: var(--hf-font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--hf-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 0 10px;
  border-bottom: 3px solid var(--hf-accent);
  margin-bottom: 14px;
}
.hf-regiao__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hf-regiao__list a {
  font-size: .875rem;
  color: var(--hf-text);
  text-decoration: none;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--hf-transition);
}
.hf-regiao__list a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--hf-border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--hf-transition);
}
.hf-regiao__list a:hover { color: var(--hf-primary); padding-left: 6px; }
.hf-regiao__list a:hover::before { background: var(--hf-accent); }
@media (max-width: 1024px) { .hf-regioes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .hf-regioes { grid-template-columns: 1fr; } }

/* ============================================================
   MÓDULO — DEPOIMENTOS
   ============================================================ */
.hf-testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hf-testimonial {
  background: var(--hf-white);
  border-radius: var(--hf-radius-lg);
  padding: 28px;
  box-shadow: var(--hf-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hf-testimonial__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}
.hf-testimonial__text {
  font-size: .9rem;
  color: var(--hf-text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.hf-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hf-testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--hf-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--hf-font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--hf-white);
  flex-shrink: 0;
}
.hf-testimonial__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--hf-text);
}
.hf-testimonial__city {
  font-size: .78rem;
  color: var(--hf-text-muted);
}

/* ============================================================
   MÓDULO — CARROSSEL SERVIÇOS
   ============================================================ */
.hf-carousel {
  position: relative;
  overflow: hidden;
}
.hf-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform .4s ease;
}
/* Desktop: 3 cards */
.hf-service-card {
  flex: 0 0 calc(33.333% - 16px);
  position: relative;
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  min-height: 220px;
}
/* Tablet: 2 cards */
@media (max-width: 1024px) {
  .hf-service-card { flex: 0 0 calc(50% - 12px); }
}
/* Mobile: 1 card quase full-width, altura fixa generosa */
@media (max-width: 640px) {
  .hf-carousel__track { gap: 16px; }
  .hf-service-card {
    flex: 0 0 calc(85vw);
    aspect-ratio: auto;
    height: 240px;
  }
}
.hf-service-card__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--hf-primary) 0%, var(--hf-primary-dark) 100%);
  transition: transform .4s ease;
}
.hf-service-card:hover .hf-service-card__bg { transform: scale(1.05); }
.hf-service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.55) 45%,
    rgba(0,0,0,.35) 100%);
}
.hf-service-card__content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
@media (max-width: 640px) {
  .hf-service-card__content { padding: 20px; }
}
.hf-service-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}
.hf-service-card__title {
  font-family: var(--hf-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
}
@media (max-width: 640px) {
  .hf-service-card__title { font-size: 1.3rem; }
}
.hf-service-card__desc {
  font-size: .85rem;
  opacity: .92;
  line-height: 1.5;
  margin: 0;
  color: #fff;
}
@media (max-width: 640px) {
  .hf-service-card__desc { font-size: .9rem; }
}
.hf-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.hf-carousel__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--hf-border);
  background: var(--hf-white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--hf-primary);
  transition: var(--hf-transition);
}
.hf-carousel__btn:hover {
  background: var(--hf-primary);
  color: var(--hf-white);
  border-color: var(--hf-primary);
}

/* ============================================================
   MÓDULO — SEGMENTOS
   ============================================================ */
.hf-segment {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--hf-radius);
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  transition: var(--hf-transition);
}
.hf-segment:hover {
  border-color: var(--hf-primary-light);
  box-shadow: var(--hf-shadow-md);
}
.hf-segment__emoji { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.hf-segment__title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--hf-text);
  margin: 0 0 6px;
}
.hf-segment__text {
  font-size: .78rem;
  color: var(--hf-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   MÓDULO — FAQ ACCORDION
   ============================================================ */
/* ============================================================
   MÓDULO — FAQ ACCORDION
   Usa <details>/<summary> — funciona 100% sem JavaScript
   BLINDADO contra sobrescrita de tema pai / Elementor
   ============================================================ */
.hf-faq { max-width: 800px; margin: 0 auto; }

/* Força o details a se comportar normalmente mesmo se o tema interferir */
details.hf-faq__item {
  display: block !important;
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius);
  margin-bottom: 10px;
  background: var(--hf-white);
  overflow: visible !important;
  max-height: none !important;
}
details.hf-faq__item[open] {
  border-color: var(--hf-primary-light);
  box-shadow: var(--hf-shadow-sm);
}

/* <summary> é o cabeçalho clicável — força display correto */
details.hf-faq__item > summary.hf-faq__question {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--hf-font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--hf-text);
  background: var(--hf-white);
  border-radius: var(--hf-radius);
  /* Remover seta nativa do <summary> em TODOS os browsers */
  list-style: none !important;
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
}
details.hf-faq__item > summary.hf-faq__question::-webkit-details-marker { display: none !important; }
details.hf-faq__item > summary.hf-faq__question::marker { display: none; content: ''; }
details.hf-faq__item > summary.hf-faq__question:hover { background: #F8FAFC; }

details.hf-faq__item[open] > summary.hf-faq__question {
  color: var(--hf-primary);
  background: #F0F4FA;
  border-radius: var(--hf-radius) var(--hf-radius) 0 0;
}

/* Ícone chevron */
.hf-faq__chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--hf-bg-alt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--hf-primary);
  transition: transform .2s ease, background .2s ease;
  pointer-events: none;
}
details.hf-faq__item[open] > summary.hf-faq__question .hf-faq__chevron {
  transform: rotate(180deg);
  background: var(--hf-primary);
  color: #fff;
}

/* Conteúdo da resposta — força visível quando aberto */
details.hf-faq__item > .hf-faq__answer {
  display: block !important;
  padding: 0 22px 20px;
  font-size: .9rem;
  color: var(--hf-text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--hf-border);
  max-height: none !important;
  overflow: visible !important;
}
.hf-faq__answer-inner { /* compatibilidade */ }

/* Mobile */
@media (max-width: 640px) {
  details.hf-faq__item > summary.hf-faq__question { padding: 14px 16px; font-size: .9rem; }
  details.hf-faq__item > .hf-faq__answer { padding: 0 16px 16px; }
}

/* ============================================================
   MÓDULO — CTA URGÊNCIA
   ============================================================ */
.hf-cta-urgent {
  background: linear-gradient(135deg, var(--hf-bg-dark) 0%, var(--hf-primary) 100%);
  position: relative;
  overflow: hidden;
}
.hf-cta-urgent::before {
  content: '24H';
  position: absolute;
  right: -20px; top: -30px;
  font-family: var(--hf-font-display);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}
.hf-cta-urgent__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hf-cta-urgent__title {
  font-family: var(--hf-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--hf-white);
  margin: 0 0 16px;
}
.hf-cta-urgent__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hf-cta-urgent__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.hf-cta-urgent__info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hf-cta-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 600;
}
.hf-cta-info-item svg { color: #4ADE80; }

/* ============================================================
   MÓDULO — PREVENTIVAS DESTAQUE
   ============================================================ */
.hf-preventiva-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.hf-preventiva-card {
  border-radius: var(--hf-radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.hf-preventiva-card--primary {
  background: linear-gradient(135deg, var(--hf-primary) 0%, var(--hf-primary-light) 100%);
  color: var(--hf-white);
}
.hf-preventiva-card--accent {
  background: linear-gradient(135deg, var(--hf-accent-dark) 0%, var(--hf-accent) 100%);
  color: var(--hf-white);
}
.hf-preventiva-card__icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.hf-preventiva-card__title {
  font-family: var(--hf-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hf-white);
  margin: 0 0 12px;
}
.hf-preventiva-card__text {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin: 0 0 24px;
}
.hf-preventiva-card__list {
  list-style: none;
  margin: 0 0 28px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.hf-preventiva-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.9);
}
.hf-preventiva-card__list li::before {
  content: '✓';
  font-weight: 800;
  color: rgba(255,255,255,.6);
}
@media (max-width: 640px) { .hf-preventiva-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.hf-footer {
  background: var(--hf-bg-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.hf-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.hf-footer__logo .hf-logo__text { color: var(--hf-white); }
.hf-footer__desc {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin: 16px 0 24px;
}
.hf-footer__title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--hf-white);
  margin: 0 0 18px;
}
.hf-footer__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.hf-footer__list a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: var(--hf-transition);
}
.hf-footer__list a:hover { color: var(--hf-white); padding-left: 4px; }
.hf-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.hf-footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--hf-accent); }
.hf-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.hf-footer__bottom-links { display: flex; gap: 24px; }
.hf-footer__bottom-links a { color: rgba(255,255,255,.4); text-decoration: none; }
.hf-footer__bottom-links a:hover { color: var(--hf-white); }
@media (max-width: 1024px) { .hf-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  {
  .hf-footer__grid { grid-template-columns: 1fr; }
  .hf-footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   SINGLE SERVIÇO — Layout completo
   ============================================================ */
.hf-servico-hero {
  background: linear-gradient(135deg, var(--hf-bg-dark) 0%, var(--hf-primary) 100%);
  padding: 60px 0 40px;
  position: relative; overflow: hidden;
}
.hf-servico-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hf-servico-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative; z-index: 1;
}
.hf-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; font-size: .8rem; font-weight: 700; margin-bottom: 20px; }
.hf-badge--green { background: rgba(22,163,74,.2); border: 1px solid rgba(22,163,74,.4); color: #4ADE80; }
.hf-servico-hero__title { font-family: var(--hf-font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 800; color: #fff; margin: 0 0 16px; line-height: 1.1; }
.hf-servico-hero__emoji { display: block; font-size: 2.5rem; margin-bottom: 12px; }
.hf-servico-hero__desc { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 0 28px; line-height: 1.65; }
.hf-servico-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hf-trust-bar { display: flex; flex-wrap: wrap; gap: 16px; }
.hf-trust-bar span { font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 600; }

/* Card visual hero */
.hf-servico-card-big {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--hf-radius-lg);
  padding: 32px 28px;
  text-align: center;
  min-width: 200px;
}
.hf-servico-card-big__emoji { font-size: 4rem; display: block; margin-bottom: 12px; }
.hf-servico-card-big__name { font-family: var(--hf-font-display); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.hf-servico-card-big__status { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 600; }
.hf-dot-blink { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; display: inline-block; animation: blink 1.4s infinite; }

/* Breadcrumb */
.hf-breadcrumb { background: var(--hf-bg-alt); padding: 10px 0; font-size: .82rem; }
.hf-breadcrumb a { color: var(--hf-primary-light); text-decoration: none; }
.hf-breadcrumb a:hover { text-decoration: underline; }
.hf-breadcrumb span { color: var(--hf-text-muted); margin: 0 6px; }

/* Botões inline serviço */
.hf-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--hf-radius); font-family: var(--hf-font-body); font-size: 1rem; font-weight: 700; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: var(--hf-transition); background: var(--hf-accent); color: #fff; border-color: var(--hf-accent); }
.hf-btn-primary:hover { background: var(--hf-accent-dark); border-color: var(--hf-accent-dark); color: #fff; transform: translateY(-1px); }
.hf-btn-primary.hf-btn--wa { background: #25D366; border-color: #25D366; }
.hf-btn-primary.hf-btn--wa:hover { background: #1ea952; border-color: #1ea952; }
.hf-btn-urgent { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--hf-radius); font-weight: 700; background: var(--hf-urgent); color: #fff; border: 2px solid var(--hf-urgent); text-decoration: none; transition: var(--hf-transition); font-size: 1rem; cursor: pointer; font-family: var(--hf-font-body); }
.hf-btn-urgent:hover { background: var(--hf-urgent-dark); border-color: var(--hf-urgent-dark); color: #fff; transform: translateY(-1px); }
.hf-btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.hf-btn--block { width: 100%; justify-content: center; }

/* Layout 2 colunas do serviço */
.hf-servico-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.hf-servico-main { display: flex; flex-direction: column; gap: 40px; }
.hf-servico-block h2 { font-family: var(--hf-font-display); font-size: 1.5rem; font-weight: 800; color: var(--hf-text); margin: 0 0 20px; border-left: 4px solid var(--hf-accent); padding-left: 16px; }
.hf-servico-body p { color: var(--hf-text-muted); line-height: 1.75; margin-bottom: 14px; }
.hf-servico-sinais { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.hf-sinal-item { background: #FFF7ED; border: 1px solid #FED7AA; border-radius: 8px; padding: 10px 14px; font-size: .875rem; font-weight: 600; color: #92400E; }
.hf-servico-alerta { background: #FFF3CD; border: 1px solid #FFC107; border-radius: 8px; padding: 12px 16px; font-size: .875rem; color: #856404; }
.hf-steps--horizontal { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; }
.hf-step { text-align: center; }
.hf-step__num { width: 56px; height: 56px; background: var(--hf-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-family: var(--hf-font-display); font-size: 1.2rem; font-weight: 800; color: #fff; border: 3px solid #fff; box-shadow: var(--hf-shadow-md); }
.hf-step__txt { font-size: .78rem; color: var(--hf-text-muted); line-height: 1.5; }
.hf-step__txt strong { display: block; color: var(--hf-text); font-size: .875rem; margin-bottom: 3px; }

/* Grid diferenciais */
.hf-grid--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hf-diferencial-card { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--hf-bg-alt); border-radius: 10px; }
.hf-diferencial-icon { font-size: 1.5rem; flex-shrink: 0; }
.hf-diferencial-card strong { display: block; font-size: .9rem; color: var(--hf-text); margin-bottom: 4px; }
.hf-diferencial-card p { font-size: .82rem; color: var(--hf-text-muted); margin: 0; line-height: 1.55; }

/* Segmentos */
.hf-segmentos--servico { display: flex; flex-wrap: wrap; gap: 10px; }
.hf-segmento-item { background: var(--hf-bg-alt); border: 1px solid var(--hf-border); border-radius: 100px; padding: 8px 18px; font-size: .875rem; font-weight: 600; color: var(--hf-text); }

/* FAQ lista (serviço) */
.hf-faq-list { display: flex; flex-direction: column; gap: 8px; }
.hf-faq-item { border: 1px solid var(--hf-border); border-radius: 8px; overflow: hidden; }
.hf-faq-question { width: 100%; background: #fff; border: none; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-size: .9rem; font-weight: 700; color: var(--hf-text); text-align: left; font-family: var(--hf-font-body); }
.hf-faq-icon { flex-shrink: 0; font-size: 1.2rem; color: var(--hf-primary); transition: transform .2s; }
.hf-faq-answer { padding: 0 20px 16px; font-size: .875rem; color: var(--hf-text-muted); line-height: 1.7; }
.hf-faq-answer[hidden] { display: none; }

/* CTA serviço */
.hf-servico-cta { background: linear-gradient(135deg, var(--hf-bg-dark) 0%, var(--hf-primary) 100%); border-radius: var(--hf-radius-lg); padding: 36px; text-align: center; }
.hf-servico-cta h2 { color: #fff; font-family: var(--hf-font-display); font-size: 1.6rem; font-weight: 800; margin: 0 0 12px; }
.hf-servico-cta p { color: rgba(255,255,255,.8); margin: 0 0 24px; }
.hf-servico-cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* Sidebar */
.hf-servico-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.hf-sidebar-card { background: #fff; border: 1px solid var(--hf-border); border-radius: var(--hf-radius-lg); padding: 24px; }
.hf-sidebar-card--cta { border: none; background: var(--hf-primary); color: #fff; }
.hf-sidebar-card--cta h3 { color: #fff; font-family: var(--hf-font-display); font-size: 1.2rem; margin: 0 0 6px; }
.hf-sidebar-card--cta p { color: rgba(255,255,255,.8); font-size: .875rem; margin: 0 0 18px; }
.hf-sidebar-card__badge { display: flex; align-items: center; gap: 8px; font-size: .75rem; font-weight: 700; color: #4ADE80; margin-bottom: 12px; letter-spacing: .5px; text-transform: uppercase; }
.hf-sidebar-info { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.hf-sidebar-info span { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 600; }
.hf-sidebar-card h3 { font-family: var(--hf-font-display); font-size: 1rem; font-weight: 700; color: var(--hf-text); margin: 0 0 14px; }
.hf-sidebar-servicos { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.hf-sidebar-servicos a { font-size: .875rem; color: var(--hf-text); text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--hf-bg-alt); display: block; transition: var(--hf-transition); }
.hf-sidebar-servicos a:hover { color: var(--hf-primary); padding-left: 4px; }
.hf-sidebar-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 10px; }
.hf-sidebar-card--review p { font-style: italic; font-size: .875rem; color: var(--hf-text-muted); line-height: 1.65; margin: 0 0 10px; }
.hf-sidebar-card--review strong { font-size: .8rem; color: var(--hf-text-muted); }
.hf-sidebar-card--garantia { text-align: center; }
.hf-garantia-icon { font-size: 2.5rem; margin-bottom: 8px; }
.hf-sidebar-card--garantia h4 { font-family: var(--hf-font-display); font-size: 1rem; font-weight: 700; color: var(--hf-text); margin: 0 0 6px; }
.hf-sidebar-card--garantia p { font-size: .82rem; color: var(--hf-text-muted); margin: 0; line-height: 1.55; }

/* Mapa */
.hf-mapa-wrapper iframe { border-radius: var(--hf-radius-lg); }

/* Container narrow (política/termos) */
.hf-container--narrow { max-width: 760px; }
.hf-container--narrow h2 { font-family: var(--hf-font-display); font-size: 1.3rem; font-weight: 700; color: var(--hf-text); margin: 28px 0 10px; }
.hf-container--narrow h3 { font-size: 1rem; font-weight: 700; color: var(--hf-text); margin: 20px 0 8px; }
.hf-container--narrow p, .hf-container--narrow ul { color: var(--hf-text-muted); line-height: 1.75; }
.hf-container--narrow ul { padding-left: 20px; }
.hf-container--narrow li { margin-bottom: 6px; }

/* Responsive serviço */
@media (max-width: 1024px) {
  .hf-servico-layout { grid-template-columns: 1fr; }
  .hf-servico-sidebar { position: static; }
  .hf-servico-hero__inner { grid-template-columns: 1fr; }
  .hf-servico-card-big { display: none; }
  .hf-steps--horizontal { grid-template-columns: 1fr; gap: 16px; }
  .hf-step { display: flex; gap: 16px; text-align: left; align-items: flex-start; }
  .hf-step__num { flex-shrink: 0; margin: 0; }
  .hf-servico-sinais { grid-template-columns: 1fr; }
  .hf-grid--2 { grid-template-columns: 1fr; }
}
.hf-field {
  margin-bottom: 14px;
}
.hf-field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--hf-text);
  margin-bottom: 5px;
}
.hf-field input,
.hf-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--hf-border);
  border-radius: 6px;
  font-size: .875rem;
  font-family: var(--hf-font-body);
  color: var(--hf-text);
  transition: border-color .2s;
}
.hf-field input:focus,
.hf-field select:focus {
  outline: none;
  border-color: var(--hf-primary-light);
}

/* ============================================================
   BENEFÍCIOS CHECK
   ============================================================ */
.hf-benefits-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hf-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .925rem;
  color: var(--hf-text);
  line-height: 1.5;
}
.hf-benefits-list li .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--hf-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: .7rem;
  margin-top: 1px;
}

/* ============================================================
   IMAGEM PLACEHOLDER (desenvolvimento)
   ============================================================ */
.hf-img-placeholder {
  background: linear-gradient(135deg, var(--hf-bg-alt) 0%, #D0D9E6 100%);
  border-radius: var(--hf-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hf-text-muted);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
}

/* ============================================================
   RESPONSIVO — HEADER MOBILE (CSS-only com checkbox, sem JS)
   ============================================================ */
/* Checkbox de controle — sempre oculto */
.hf-menu-check { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }

/* Toggle: por padrão mostra hambúrguer, esconde X */
.hf-menu-toggle__close { display: none; }

@media (max-width: 960px) {
  .hf-nav,
  .hf-header__phone-mini { display: none; }
  .hf-menu-toggle { display: flex; cursor: pointer; }

  /* Quando o checkbox está marcado, abre o menu */
  .hf-menu-check:checked ~ nav .hf-nav,
  .hf-header__inner:has(.hf-menu-check:checked) .hf-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--hf-white);
    padding: 16px;
    box-shadow: var(--hf-shadow-lg);
    gap: 4px;
    align-items: stretch;
    z-index: 999;
  }

  /* Alterna ícone hambúrguer ↔ X */
  .hf-menu-check:checked ~ .hf-menu-toggle .hf-menu-toggle__open,
  .hf-header__inner:has(.hf-menu-check:checked) .hf-menu-toggle__open { display: none; }
  .hf-menu-check:checked ~ .hf-menu-toggle .hf-menu-toggle__close,
  .hf-header__inner:has(.hf-menu-check:checked) .hf-menu-toggle__close { display: block; }

  /* Dropdowns abertos dentro do menu mobile */
  .hf-menu-check:checked ~ nav .hf-dropdown,
  .hf-header__inner:has(.hf-menu-check:checked) .hf-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--hf-bg-alt);
    columns: 1;
    padding: 4px 0 4px 12px;
  }
}

@media (max-width: 640px) {
  :root {
    --hf-section-py: var(--hf-section-py-sm);
  }
  .hf-topbar__msg span { display: none; }
  .hf-hero__trust { gap: 12px; }
  .hf-testimonials-track { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME — Sobre + Contadores + CTA Urgência (novo page-home)
============================================================ */
.hf-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.hf-about__media img { display:block; }
.hf-about__text p { color: var(--hf-text-muted); line-height: 1.75; margin-bottom: 14px; }

.hf-cta-urgencia {
  background: linear-gradient(135deg, var(--hf-bg-dark) 0%, var(--hf-primary) 100%);
}
.hf-cta-urgencia__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.hf-cta-urgencia__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 280px;
}

/* Diferenciais (cards) */
.hf-diff {
  background: #fff;
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--hf-transition);
}
.hf-diff:hover { transform: translateY(-4px); box-shadow: var(--hf-shadow-md); }
.hf-diff__icon { font-size: 2.6rem; margin-bottom: 14px; line-height: 1; }
.hf-diff__title {
  font-family: var(--hf-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hf-text);
  margin: 0 0 8px;
}
.hf-diff__text {
  color: var(--hf-text-muted);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

/* Depoimentos */
.hf-testimonial {
  background: #fff;
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-lg);
  padding: 28px 24px;
}
.hf-testimonial__stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 12px; }
.hf-testimonial__text {
  font-size: .95rem;
  color: var(--hf-text);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 16px;
}
.hf-testimonial__author { display: flex; flex-direction: column; }
.hf-testimonial__author strong { font-size: .9rem; color: var(--hf-text); }
.hf-testimonial__author span { font-size: .78rem; color: var(--hf-text-muted); }

/* Grid 3 colunas (utility) */
.hf-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .hf-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hf-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .hf-cta-urgencia__inner { grid-template-columns: 1fr; gap: 24px; }
  .hf-about__text .hf-counters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hf-grid-3 { grid-template-columns: 1fr; }
}

/* Garantir mobile-open com hover OK */
.hf-header.mobile-open .hf-nav__link { padding: 12px 16px; border-radius: 8px; }
.hf-header.mobile-open .hf-nav__link:hover { background: var(--hf-bg-alt); }

/* Botões variantes */
.hf-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--hf-radius);
  font-weight: 700;
  background: transparent;
  color: var(--hf-primary);
  border: 2px solid var(--hf-primary);
  text-decoration: none;
  transition: var(--hf-transition);
}
.hf-btn-outline-dark:hover { background: var(--hf-primary); color: #fff; }

/* ============================================================
   PÁGINAS AUXILIARES (Sobre, Serviços, Regiões, Contato, Legal)
============================================================ */

/* Hero das páginas (não Home) */
.hf-page-hero {
  background: linear-gradient(135deg, var(--hf-bg-dark) 0%, var(--hf-primary) 100%);
  background-size: cover;
  background-position: center;
  padding: 64px 0 56px;
  color: #fff;
  position: relative;
}
/* Overlay escurecedor quando há imagem de fundo */
.hf-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,31,61,.85) 0%, rgba(27,63,114,.75) 100%);
  pointer-events: none;
}
.hf-page-hero > .hf-container { position: relative; z-index: 1; }
.hf-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 45%;
  height: 4px;
  background: var(--hf-accent);
}
.hf-page-hero__title {
  font-family: var(--hf-font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 4px 0 14px;
  letter-spacing: -.5px;
}
.hf-page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin: 0;
  line-height: 1.65;
}

/* Breadcrumb claro (no hero escuro) */
.hf-breadcrumb-light {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}
.hf-breadcrumb-light a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.hf-breadcrumb-light a:hover { color: #fff; }
.hf-breadcrumb-light span:not(:first-child) { color: rgba(255,255,255,.4); }

/* Container narrow para texto legal */
.hf-container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Cards de contato (clicáveis) */
.hf-contato-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius);
  margin-bottom: 12px;
  text-decoration: none;
  transition: var(--hf-transition);
  cursor: pointer;
}
.hf-contato-card:hover {
  border-color: var(--hf-primary-light);
  box-shadow: var(--hf-shadow-md);
  transform: translateY(-2px);
}
.hf-contato-card--wa:hover { border-color: #25D366; }
.hf-contato-card--tel:hover { border-color: var(--hf-urgent); }
.hf-contato-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--hf-bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hf-contato-card--wa .hf-contato-card__icon { background: #DCFCE7; }
.hf-contato-card--tel .hf-contato-card__icon { background: #FEE2E2; }
.hf-contato-card--mail .hf-contato-card__icon { background: #DBEAFE; }
.hf-contato-card__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hf-text-muted);
  margin-bottom: 2px;
}
.hf-contato-card__value {
  font-size: 1.05rem;
  color: var(--hf-text);
  font-weight: 700;
  display: block;
}
.hf-contato-card__arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--hf-text-muted);
  transition: transform .2s;
}
.hf-contato-card:hover .hf-contato-card__arrow {
  color: var(--hf-primary);
  transform: translateX(4px);
}

/* Conteúdo legal (Política, Termos) — estilizado e legível */
.hf-legal-content {
  background: #fff;
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-lg);
  padding: 48px;
  color: var(--hf-text);
  line-height: 1.8;
  font-size: 1rem;
}
.hf-legal-content h2 {
  font-family: var(--hf-font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hf-primary);
  margin: 32px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--hf-bg-alt);
}
.hf-legal-content h2:first-child { margin-top: 0; }
.hf-legal-content h3 {
  font-family: var(--hf-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hf-primary);
  margin: 24px 0 10px;
}
.hf-legal-content p {
  margin: 0 0 14px;
  color: var(--hf-text);
}
.hf-legal-content ul, .hf-legal-content ol {
  margin: 0 0 14px 24px;
  color: var(--hf-text);
}
.hf-legal-content li { margin-bottom: 6px; }
.hf-legal-content a {
  color: var(--hf-primary-light);
  font-weight: 600;
}
@media (max-width: 640px) {
  .hf-legal-content { padding: 24px 20px; }
  .hf-legal-content h2 { font-size: 1.3rem; }
}

/* ============================================================
   HERO PAGE (CTA Urgent) — fallback caso classe diferente
============================================================ */
.hf-cta-urgent {
  background: linear-gradient(135deg, var(--hf-bg-dark) 0%, var(--hf-primary) 100%);
  position: relative;
  overflow: hidden;
}
.hf-cta-urgent::before {
  content: '24H';
  position: absolute;
  right: -20px; top: -30px;
  font-family: var(--hf-font-display);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}
.hf-cta-urgent__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hf-cta-urgent__title {
  font-family: var(--hf-font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--hf-white);
  margin: 0 0 16px;
  line-height: 1.15;
}
.hf-cta-urgent__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hf-cta-urgent__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hf-cta-urgent__info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hf-cta-info-item {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  font-weight: 600;
}

/* ============================================================
   PÁGINA DE CONTATO — layout sem formulário
   ============================================================ */

/* Canais principais — lista vertical de cards grandes */
.hf-contato-canais {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 56px;
}
.hf-contato-canal {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: #fff;
  border: 2px solid var(--hf-border);
  border-radius: var(--hf-radius-lg);
  text-decoration: none;
  color: var(--hf-text);
  transition: var(--hf-transition);
  position: relative;
}
.hf-contato-canal:hover {
  transform: translateY(-3px);
  box-shadow: var(--hf-shadow-lg);
}
.hf-contato-canal--wa  { border-color: #86EFAC; }
.hf-contato-canal--wa:hover  { border-color: #25D366; background: #F0FDF4; }
.hf-contato-canal--tel { border-color: #FECACA; }
.hf-contato-canal--tel:hover { border-color: var(--hf-urgent); background: #FEF2F2; }
.hf-contato-canal--mail { border-color: #BFDBFE; }
.hf-contato-canal--mail:hover { border-color: #3B82F6; background: #EFF6FF; }

.hf-contato-canal__icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hf-contato-canal--wa  .hf-contato-canal__icon { background: #DCFCE7; color: #16A34A; }
.hf-contato-canal--tel .hf-contato-canal__icon { background: #FEE2E2; color: var(--hf-urgent); }
.hf-contato-canal--mail .hf-contato-canal__icon { background: #DBEAFE; color: #2563EB; }

.hf-contato-canal__body { flex: 1; min-width: 0; }

.hf-contato-canal__badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 100px;
  background: #DCFCE7;
  color: #15803D;
  margin-bottom: 6px;
}
.hf-contato-canal__badge--urgent {
  background: #FEE2E2;
  color: #DC2626;
}

.hf-contato-canal__title {
  font-family: var(--hf-font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--hf-text);
  margin: 0 0 4px;
}
.hf-contato-canal__num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hf-primary);
  margin: 0 0 4px;
}
.hf-contato-canal__desc {
  font-size: .82rem;
  color: var(--hf-text-muted);
  margin: 0;
}
.hf-contato-canal__arrow {
  color: var(--hf-text-muted);
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease;
}
.hf-contato-canal:hover .hf-contato-canal__arrow {
  transform: translateX(5px);
  color: var(--hf-primary);
}

/* Grid de informações extras */
.hf-contato-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 48px;
}
.hf-contato-info-card {
  background: var(--hf-bg-alt);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius);
  padding: 20px;
}
.hf-contato-info-card__icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  line-height: 1;
}
.hf-contato-info-card__title {
  font-family: var(--hf-font-display);
  font-size: .9rem;
  font-weight: 800;
  color: var(--hf-primary);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hf-contato-info-card__text {
  font-size: .875rem;
  color: var(--hf-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Pílulas de redes sociais */
.hf-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--hf-border);
  font-size: .8rem;
  font-weight: 600;
  color: var(--hf-text);
  text-decoration: none;
  transition: var(--hf-transition);
}
.hf-social-pill:hover {
  border-color: var(--hf-primary);
  color: var(--hf-primary);
  transform: translateY(-1px);
}

/* Mapa */
.hf-contato-mapa {
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  border: 1px solid var(--hf-border);
  box-shadow: var(--hf-shadow-md);
  margin-top: 0;
}

/* Mobile */
@media (max-width: 640px) {
  .hf-contato-canal {
    gap: 16px;
    padding: 18px 20px;
  }
  .hf-contato-canal__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
  }
  .hf-contato-canal__icon svg { width: 26px; height: 26px; }
  .hf-contato-canal__title { font-size: 1.1rem; }
  .hf-contato-canal__num { font-size: 1rem; }
  .hf-contato-info-grid { grid-template-columns: 1fr; }
}
