/* ============================================================
   HC Poços Artesianos — Folha de estilos principal
   ============================================================ */

:root {
  --primary:        #2B3DAF;   /* Azul royal — cor do logo */
  --primary-dark:   #1B2A6B;   /* Navy — cards escuros, seções */
  --primary-darker: #0C1534;   /* Navy muito escuro — topbar */
  --primary-light:  #EEF2FF;   /* Azul claro — fundos suaves */
  --accent:         #3B82F6;   /* Azul vibrante — destaques de texto */
  --text-dark:      #0D1527;
  --text-muted:     #6B7280;
  --bg-light:       #F5F6FA;
  --white:          #FFFFFF;
  --border:         #D5DCF5;
  --shadow:         0 4px 24px rgba(27,42,107,.12);
  --radius:         12px;
}

/* ── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; }

a { text-decoration: none; }

/* ── Botões ───────────────────────────────────────────────── */
.btn-primary-hc {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary-hc:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,42,107,.35);
}

.btn-outline-hc {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.85);
  padding: .7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, color .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-outline-hc:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

/* ── Topbar de contatos ───────────────────────────────────── */
.topbar-contacts {
  background: var(--primary-darker);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  padding: .5rem 0;
}
.topbar-contacts a {
  color: rgba(255,255,255,.8);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.topbar-contacts a:hover { color: #fff; }
.topbar-contacts .bi { font-size: .85rem; }
.topbar-contacts .divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.2);
  display: inline-block;
  margin: 0 .5rem;
  vertical-align: middle;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar-hc {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  padding: .7rem 0;
  transition: box-shadow .3s;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-hc.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }

.navbar-logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.nav-link-hc {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: .93rem;
  padding: .4rem .9rem !important;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link-hc:hover { color: var(--primary) !important; background: var(--primary-light); }

/* ── Hero (full-width background image) ───────────────────── */
.hero {
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
/* overlay azul sobre a foto */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 21, 52, .82) 0%,
    rgba(27, 42, 107, .78) 50%,
    rgba(43, 61, 175, .70) 100%
  );
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1.1rem;
}
.hero h1 em { font-style: normal; color: #7DC4FF; }
.hero-sub {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
  border-radius: 50px;
  padding: .35rem 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.stat-number span { color: var(--primary); }
.stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: .25rem;
  display: block;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ── Seções ───────────────────────────────────────────────── */
section { padding: 5rem 0; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
}

.bg-light-hc { background: var(--bg-light); }
.bg-primary-hc { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }

/* ── Cards de Benefício ───────────────────────────────────── */
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 60px; height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.benefit-card h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; }
.benefit-card p  { color: var(--text-muted); font-size: .92rem; line-height: 1.6; margin: 0; }

/* ── Serviços ─────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card-top {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
  padding: 1.75rem 1.5rem 1rem;
  color: #fff;
}
.service-card-top i { font-size: 2rem; opacity: .9; }
.service-card-top h4 { font-weight: 700; margin: .75rem 0 .25rem; font-size: 1.05rem; }
.service-card-top p { font-size: .85rem; opacity: .85; margin: 0; }
.service-card-body { padding: 1.25rem 1.5rem; }
.service-card-body ul { list-style: none; padding: 0; margin: 0; }
.service-card-body ul li {
  font-size: .88rem;
  color: var(--text-muted);
  padding: .3rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-card-body ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Processo ─────────────────────────────────────────────── */
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 100%;
}
.step-number {
  width: 48px; height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h5 { font-weight: 700; font-size: .98rem; margin-bottom: .4rem; }
.step-content p  { color: var(--text-muted); font-size: .88rem; margin: 0; line-height: 1.6; }

/* ── Sobre ────────────────────────────────────────────────── */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  padding: .5rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

/* ── Depoimentos ──────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  height: 100%;
}
.testimonial-stars { color: #FBBF24; font-size: 1rem; margin-bottom: .75rem; }
.testimonial-text {
  font-size: .93rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author strong { font-size: .9rem; }
.testimonial-author span  { font-size: .8rem; color: var(--text-muted); }

/* ── FAQ ──────────────────────────────────────────────────── */
.accordion-hc .accordion-button {
  font-weight: 600;
  font-size: .96rem;
  color: var(--text-dark);
  background: var(--white);
  box-shadow: none;
  border-radius: var(--radius) !important;
  padding: 1.1rem 1.5rem;
}
.accordion-hc .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
}
.accordion-hc .accordion-button::after {
  filter: none;
}
.accordion-hc .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-hc .accordion-body {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 1rem 1.5rem 1.25rem;
}

/* ── Formulário de Orçamento ──────────────────────────────── */
.form-section {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.form-card .form-label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-dark);
  margin-bottom: .35rem;
}
.form-card .form-control,
.form-card .form-select {
  border-color: var(--border);
  border-radius: 8px;
  font-size: .93rem;
  padding: .6rem .9rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,95,142,.12);
}
.form-submit-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: background .2s, transform .15s;
  cursor: pointer;
}
.form-submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

.form-info-box { color: rgba(255,255,255,.85); }
.form-info-box h3 { color: #fff; font-weight: 800; font-size: 1.8rem; margin-bottom: 1rem; }
.form-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.form-info-item i {
  font-size: 1.3rem;
  color: #7DC4FF;
  flex-shrink: 0;
  margin-top: .1rem;
}
.form-info-item p { margin: 0; font-size: .92rem; line-height: 1.6; }
.form-info-item strong { color: #fff; display: block; font-size: .95rem; }

/* ── WhatsApp Flutuante ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ── Alert de sucesso do form ─────────────────────────────── */
.form-alert {
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: .93rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.form-alert.success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.form-alert.error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ── Footer ───────────────────────────────────────────────── */
.footer-main {
  background: var(--primary-darker);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}
.footer-logo { color: #fff; font-weight: 800; font-size: 1.3rem; margin-bottom: .5rem; }
.footer-logo span { color: #7DC4FF; }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-heading { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: #7DC4FF; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .84rem;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.8);
}
.footer-contact-item span {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.55;
}
.footer-contact-item i { color: #7DC4FF; font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background .2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ── Imagens ──────────────────────────────────────────────── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero — foto lateral */
.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  position: relative;
}
.hero-img-wrap .img-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  gap: .5rem;
}
.hero-img-wrap .img-placeholder-label i { font-size: 2rem; }

/* Sobre — foto */
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--bg-light);
  position: relative;
}

/* Cards de serviço na home (resumo) */
.service-thumb {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  height: 100%;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.service-thumb:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-thumb-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-light);
  position: relative;
}
.service-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.service-thumb:hover .service-thumb-img img { transform: scale(1.05); }
.service-thumb-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-thumb-body h4 { font-weight: 700; font-size: 1rem; margin-bottom: .4rem; }
.service-thumb-body p  { color: var(--text-muted); font-size: .88rem; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.service-thumb-link {
  color: var(--primary);
  font-size: .87rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}
.service-thumb-link:hover { gap: .6rem; }

/* Serviços — detalhe (página /servicos) */
.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--bg-light);
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-detail-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: .6rem;
}
.service-detail h3 { font-weight: 800; font-size: 1.7rem; margin-bottom: .75rem; }
.service-detail-desc { color: var(--text-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.service-features { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .45rem 0;
  font-size: .9rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--primary); font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

/* Hero mini (páginas internas) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-logo-bg {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  max-width: 38%;
  opacity: .13;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgba(255,255,255,.12));
  z-index: 0;
}
.page-hero-logo-bg img { width: 100%; height: auto; display: block; }
.page-hero h1 { color: #fff; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1rem; margin: 0; }
.page-hero-breadcrumb { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 1rem; }
.page-hero-breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb i { font-size: .7rem; }

/* ── Páginas de Cidade (SEO Local) ──────────────────────────── */

/* Amplia o page-hero nas páginas de cidade */
.page-hero {
  padding: 5rem 0 4rem;
}
.page-hero-tag {
  display: inline-block;
  background: rgba(125,196,255,.2);
  color: #7DC4FF;
  border: 1px solid rgba(125,196,255,.3);
  border-radius: 999px;
  padding: .3rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.page-hero-title em {
  color: #7DC4FF;
  font-style: normal;
}
.page-hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.7;
}

/* Breadcrumb sobre fundo escuro */
.breadcrumb-hc { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); }
.breadcrumb-hc .breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb-hc .breadcrumb-item a:hover { color: #fff; }
.breadcrumb-hc .breadcrumb-item.active { color: rgba(255,255,255,.5); }
.breadcrumb-hc .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* Tags de cross-link entre cidades */
.cidade-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.cidade-link-tag {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--primary);
  border-radius: 999px;
  padding: .35rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}
.cidade-link-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(43,61,175,.25);
}

/* ── Service thumb — variante ícone (sem foto) ────────────── */
.service-thumb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background: var(--primary-light);
  font-size: 2.5rem;
  color: var(--primary);
}
.service-thumb-icon + h4 {
  font-weight: 700;
  font-size: 1rem;
  padding: 0 1.4rem;
  margin: 1.25rem 0 .4rem;
}
.service-thumb-icon ~ p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.6;
  flex: 1;
  padding: 0 1.4rem;
  margin: 0 0 1rem;
}
.service-thumb-icon ~ .btn {
  margin: 0 1.4rem 1.5rem;
  align-self: flex-start;
}

/* ── Form card — header com fundo escuro ──────────────────── */
.form-card-header {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
  margin: -2.5rem -2.5rem 2rem;
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 20px 20px 0 0;
}
.form-card-header .section-tag {
  background: rgba(255,255,255,.15);
  color: #7DC4FF;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVIDADE — 4 breakpoints
   xxl ≥ 1400 | lg 992–1199 | md 768–991 | sm ≤ 767 | xs ≤ 479
   ══════════════════════════════════════════════════════════ */

/* ── Laptop pequeno: 992px – 1199px ──────────────────────── */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-logo-img { height: 76px; }
  .hero h1 { font-size: 2.8rem; }
  .stat-number { font-size: 2.1rem; }
  .form-info-box h3 { font-size: 1.6rem; }
  .page-hero-logo-bg { width: 300px; max-width: 30%; }
}

/* ── Tablet: 768px – 991px ────────────────────────────────── */
@media (min-width: 768px) and (max-width: 991px) {
  .topbar-contacts { display: none; }
  .navbar-logo-img { height: 68px; }
  .navbar-hc { padding: .5rem 0; }

  .hero { min-height: 72vh; padding: 4rem 0 4.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }

  .stats-bar { padding: 1.5rem 1rem; }
  .stat-number { font-size: 2rem; }

  section { padding: 3.5rem 0; }
  .service-detail { padding: 3rem 0; }

  .form-card { padding: 2rem 1.75rem; }
  .form-card-header { margin: -2rem -1.75rem 1.75rem; padding: 2rem 1.75rem 1.5rem; }
  .form-info-box h3 { font-size: 1.5rem; }

  .page-hero { padding: 4rem 0 3rem; }
  .page-hero-logo-bg { width: 240px; max-width: 28%; opacity: .1; }
  .page-hero-title { font-size: 2rem; }

  .footer-main { padding: 3rem 0 2rem; }
}

/* ── Mobile: ≤ 767px ──────────────────────────────────────── */
@media (max-width: 767px) {
  /* topbar */
  .topbar-contacts { display: none; }

  /* navbar */
  .navbar-logo-img { height: 60px; }
  .navbar-hc { padding: .5rem 0; }

  /* hero */
  .hero { min-height: auto; padding: 3.5rem 0 5rem; }
  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: .98rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary-hc,
  .hero-ctas .btn-outline-hc {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: .95rem;
  }

  /* stats */
  .stats-bar {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid var(--border);
    padding: 1.25rem 1rem;
  }
  .stat-number { font-size: 2rem; }
  .stat-divider { display: none; }

  /* sections */
  section { padding: 3rem 0; }
  .section-title { font-size: 1.6rem; }
  .service-detail { padding: 2.5rem 0; }
  .service-detail h3 { font-size: 1.4rem; }
  .service-detail-desc { font-size: .92rem; }

  /* form */
  .form-card { padding: 1.75rem 1.25rem; }
  .form-card-header { margin: -1.75rem -1.25rem 1.5rem; padding: 1.75rem 1.25rem 1.5rem; }
  .form-info-box h3 { font-size: 1.45rem; }

  /* page hero */
  .page-hero { padding: 3rem 0 2.5rem; }
  .page-hero-logo-bg { display: none; }
  .page-hero-title { font-size: 1.75rem; }
  .page-hero h1 { font-size: 1.6rem; }

  /* footer */
  .footer-main { padding: 3rem 0 1.5rem; }
  .footer-bottom { text-align: center; }
  .footer-bottom .d-flex { flex-direction: column; gap: .5rem; align-items: center; }
}

/* ── About mini-stats (foto + 3 boxes abaixo) ─────────────── */
@media (max-width: 767px) {
  .about-img-wrap { margin-bottom: .25rem; }
}

/* ── Smartphone pequeno: ≤ 479px ──────────────────────────── */
@media (max-width: 479px) {
  /* navbar */
  .navbar-logo-img { height: 50px; }

  /* hero */
  .hero { padding: 2.75rem 0 4rem; }
  .hero h1 { font-size: 1.55rem; line-height: 1.25; }
  .hero-sub { font-size: .92rem; }
  .hero-tag { font-size: .72rem; padding: .3rem .9rem; }
  .hero-ctas .btn-primary-hc,
  .hero-ctas .btn-outline-hc { font-size: .88rem; padding: .75rem 1.4rem; }

  /* stats */
  .stats-bar { padding: 1rem .75rem; }
  .stat-number { font-size: 1.75rem; }
  .stat-label { font-size: .75rem; }

  /* sections */
  section { padding: 2.25rem 0; }
  .section-tag { font-size: .72rem; }
  .section-title { font-size: 1.4rem; }
  .section-sub { font-size: .92rem; }

  /* cards */
  .benefit-card { padding: 1.4rem 1.1rem; }
  .benefit-icon { width: 50px; height: 50px; font-size: 1.35rem; border-radius: 10px; }
  .testimonial-card { padding: 1.25rem 1rem; }
  .process-step { padding: 1.1rem; gap: 1rem; }

  /* service detail */
  .service-detail { padding: 2rem 0; }
  .service-detail h3 { font-size: 1.25rem; }
  .service-detail-desc { font-size: .9rem; }
  .service-features li { font-size: .85rem; }

  /* form */
  .form-card { padding: 1.25rem 1rem; }
  .form-card-header { margin: -1.25rem -1rem 1.25rem; padding: 1.5rem 1rem 1.25rem; }
  .form-info-box h3 { font-size: 1.3rem; }
  .form-submit-btn { font-size: .9rem; padding: .8rem 1.5rem; }
  .form-section { padding: 2.5rem 0 !important; }

  /* page hero */
  .page-hero { padding: 2.25rem 0 2rem; }
  .page-hero-title { font-size: 1.4rem; }
  .page-hero h1 { font-size: 1.35rem; }
  .page-hero p { font-size: .92rem; }
  .page-hero-tag { font-size: .72rem; }
  .page-hero-sub { font-size: .95rem; }

  /* footer */
  .footer-main { padding: 2.25rem 0 1.25rem; }
  .footer-social { justify-content: center; flex-wrap: wrap; }
  .footer-heading { font-size: .9rem; }
  .footer-links a { font-size: .85rem; }
  .footer-contact-item { font-size: .85rem; }

  /* whatsapp float */
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.45rem; bottom: 1rem; right: 1rem; }

  /* accordion */
  .accordion-hc .accordion-button { font-size: .9rem; padding: .9rem 1.1rem; }
  .accordion-hc .accordion-body { font-size: .88rem; padding: .9rem 1.1rem 1rem; }
}
