/* ============================================================
   ZAPI IMPERMEABILIZANTES — CSS Principal
   Paleta: Primária #FDC525 | Secundária #3B3D46 | Cinza claro #F5F7FA
   ============================================================ */

:root {
  --blue:       #3B3D46;
  --blue-dark:  #2a2c33;
  --blue-light: #ebebed;
  --orange:     #FDC525;
  --orange-dark:#e0ab0f;
  --orange-light: #fff9e6;
  --gray-light: #F5F7FA;
  --gray-mid:   #e0e4ed;
  --text:       #1a1a2e;
  --text-muted: #6c7180;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(59,61,70,.15);
  --shadow-sm:  0 2px 8px rgba(59,61,70,.08);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: .25s ease;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; }
a { text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* Utilitários de cor */
.text-primary-zapi { color: var(--blue) !important; }
.text-accent        { color: var(--orange) !important; }
.bg-accent          { background: var(--orange) !important; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .55rem 0;
}
.topbar a { color: rgba(255,255,255,.85); text-decoration: none; }
.topbar a:hover { color: var(--orange); }
.topbar-social { font-size: 1rem; color: rgba(255,255,255,.75); }
.topbar-social:hover { color: var(--orange); }
.topbar-tel { font-weight: 700; font-size: .9rem; }

/* Logo */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.navbar-brand:hover { opacity: .9; }

/* Footer loja */
.footer-loja-title { color: var(--orange); font-size: .85rem; font-weight: 700; margin-bottom: .25rem; }
.footer-loja-end { color: rgba(255,255,255,.6); font-size: .82rem; margin: 0; }
.footer-essencia { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: .75rem; }

/* Selos inline no topo do footer */
.footer-selos {
  background: rgba(255,255,255,.06);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2.5rem;
}
.footer-selo {
  max-height: 78px;
  max-width: 155px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transition: transform .25s ease, filter .25s ease;
}
.footer-selo:hover { transform: scale(1.08); filter: brightness(1.15); }
.footer-selo-link { display: inline-flex; align-items: center; }

@media (max-width: 576px) {
  .footer-selo { max-height: 50px; max-width: 100px; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.bg-primary-zapi { background: var(--orange) !important; }

/* NAVBAR YELLOW — texto escuro, hover laranja mais forte */
.navbar.bg-primary-zapi .nav-link,
.navbar.bg-primary-zapi .navbar-brand { color: var(--text) !important; }
.navbar.bg-primary-zapi .nav-link:hover,
.navbar.bg-primary-zapi .nav-link.active {
  color: var(--blue) !important;
  background: rgba(0,0,0,.08);
}
.navbar.bg-primary-zapi .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%231a1a2e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* CTA do navbar — em fundo amarelo, fica escuro */
.navbar.bg-primary-zapi .btn-zapi-cta {
  background: var(--blue);
  color: var(--white) !important;
}
.navbar.bg-primary-zapi .btn-zapi-cta:hover {
  background: var(--blue-dark);
  color: var(--white) !important;
}

/* Botão de busca no navbar */
.btn-search-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
  color: var(--text);
  border: none;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all .25s ease;
}
.btn-search-toggle:hover {
  background: var(--blue);
  color: var(--white);
}

/* Barra de busca colapsável */
.search-bar-wrap {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 3px solid var(--orange);
}
.search-bar-wrap .form-control-zapi {
  border: none;
  background: rgba(255,255,255,.95);
}
.search-bar-wrap .form-control-zapi:focus {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(253,197,37,.4);
}

/* PÁGINA DE BUSCA — cards de resultado */
.search-group-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--orange);
  margin-bottom: 1.25rem;
}
.search-result-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all .25s ease;
  height: 100%;
}
.search-result-card.search-result-text { flex-direction: row; padding: 1.25rem; gap: 1rem; align-items: flex-start; }
.search-result-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(59,61,70,.1);
  color: var(--text);
}
.search-result-thumb {
  height: 140px;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.search-result-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.search-result-body { padding: 1rem 1.25rem; flex: 1; }
.search-result-card.search-result-text .search-result-body { padding: 0; }
.search-result-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .35rem;
}
.search-result-body p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}
.search-result-icon {
  width: 48px; height: 48px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.navbar { padding: .85rem 0; }

.logo-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text);
  flex-shrink: 0;
}

.logo-dr   { font-size: 1.35rem; font-weight: 800; color: var(--orange); }
.logo-zapi { font-size: 1.35rem; font-weight: 800; color: var(--white); }
.logo-sub  { font-size: .65rem; color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase; line-height: 1; }

.nav-link {
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.85) !important;
  padding: .5rem .75rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,.12);
}

.btn-zapi-cta {
  background: var(--orange);
  color: var(--text) !important;
  font-weight: 700;
  font-size: .88rem;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  border: none;
  transition: all var(--transition);
}
.btn-zapi-cta:hover {
  background: var(--orange-dark);
  color: var(--text) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,208,0,.4);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #4a4d58 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,102,0,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-overlay {
  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");
}

.hero-content { position: relative; z-index: 2; padding: 5rem 0; }
.min-vh-80 { min-height: 80vh; }

.hero-badge {
  display: inline-block;
  background: rgba(255,102,0,.2);
  color: var(--orange);
  border: 1px solid rgba(255,102,0,.35);
  font-size: .82rem; font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.text-accent { color: var(--orange); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin-bottom: .5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: .2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-accent {
  background: var(--orange);
  color: var(--text) !important;
  border: none; font-weight: 700;
  border-radius: 50px;
  padding: .65rem 1.75rem;
  transition: all var(--transition);
}
.btn-accent:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,208,0,.4);
  color: var(--text) !important;
}

.btn-primary-zapi {
  background: var(--blue);
  color: var(--white) !important;
  border: none; font-weight: 700;
  border-radius: 50px;
  padding: .65rem 1.75rem;
  transition: all var(--transition);
}
.btn-primary-zapi:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--white) !important;
}

.btn-outline-primary-zapi {
  background: transparent;
  color: var(--blue) !important;
  border: 2px solid var(--blue);
  font-weight: 700;
  border-radius: 50px;
  padding: .6rem 1.5rem;
  transition: all var(--transition);
}
.btn-outline-primary-zapi:hover {
  background: var(--blue);
  color: var(--white) !important;
}

.btn-outline-light {
  border-radius: 50px;
  font-weight: 700;
  padding: .65rem 1.75rem;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  border: none; font-weight: 700;
  border-radius: 50px;
  padding: .7rem 1.5rem;
  transition: all var(--transition);
}
.btn-whatsapp:hover {
  background: #1eb356;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn-link-zapi {
  color: var(--blue);
  font-weight: 600;
  font-size: .88rem;
  transition: color var(--transition);
}
.btn-link-zapi:hover { color: var(--orange); }

/* ============================================================
   FAIXA DE DIFERENCIAIS
   ============================================================ */
.diferenciais-strip { background: var(--orange); color: var(--text) !important; }
.diferenciais-strip .text-white { color: var(--text) !important; }
.diferenciais-strip i { display: block; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section-block { padding: 5rem 0; }
.bg-light-zapi { background: var(--gray-light); }

.section-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid rgba(255,102,0,.25);
  font-size: .78rem; font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: .75rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ============================================================
   CARDS DE SERVIÇO
   ============================================================ */
.card-servico {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.card-servico:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}

.card-servico-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--blue);
  margin-bottom: 1.25rem;
}

.card-servico-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.card-servico-text  { color: var(--text-muted); font-size: .95rem; flex: 1; }

/* Card de serviço como link inteiro */
.card-servico-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.card-servico-link:hover { color: inherit; }
.card-servico-link:hover .card-servico { border-color: var(--orange); transform: translateY(-5px); }
.card-servico-link:hover .btn-link-zapi { color: var(--orange); }

/* Card de servico com imagem (foto em cima + corpo embaixo) */
.card-servico-img { padding: 0; overflow: hidden; }
.card-servico-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--gray-light);
  overflow: hidden;
}
.card-servico-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.card-servico-link:hover .card-servico-img-wrap img { transform: scale(1.05); }
.card-servico-img-body { padding: 1.5rem; }

/* Video YouTube wrap */
.video-yt-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(59,61,70,.15);
}

/* Serviço full (página serviços) */
.card-servico-full {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.card-servico-full:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.card-servico-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 1.75rem;
  display: flex; align-items: center; gap: 1rem;
}
.card-servico-icon-lg {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
}
.card-servico-title-lg { font-size: 1.1rem; color: var(--white); margin: 0; }

.card-servico-body { padding: 1.75rem; flex: 1; }
.card-servico-body p { color: var(--text-muted); margin-bottom: 0; }

.servico-areas-lista { list-style: none; padding: 0; margin: 0; }
.servico-areas-lista li { padding: .25rem 0; font-size: .92rem; }

.servico-norma {
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-sm);
  padding: .4rem .75rem;
  font-size: .8rem; font-weight: 600;
  display: inline-block;
}

.card-servico-footer { padding: 1.25rem 1.75rem; border-top: 1px solid var(--gray-mid); }

/* ============================================================
   CARDS DE ÁREA
   ============================================================ */
.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }

.area-icon {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--orange);
  margin: 0 auto 1rem;
}
.area-nome  { font-weight: 700; font-size: .9rem; margin-bottom: .4rem; }
.area-sistema { font-size: .75rem; color: var(--text-muted); }

/* ============================================================
   SOBRE RESUMO
   ============================================================ */
.sobre-image-block {
  position: relative;
  background: var(--blue-light);
  border-radius: var(--radius);
  min-height: 350px;
  display: flex; align-items: center; justify-content: center;
}
.sobre-badge-anos {
  position: absolute; top: -20px; right: -20px;
  background: var(--orange);
  color: var(--text);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(255,102,0,.4);
}
.anos-num   { font-size: 2rem; font-weight: 800; line-height: 1; }
.anos-label { font-size: .65rem; font-weight: 600; text-align: center; }

.lista-diferenciais { list-style: none; padding: 0; margin: 0; }
.lista-diferenciais li { padding: .4rem 0; display: flex; align-items: center; gap: .6rem; font-size: .97rem; }

/* ============================================================
   CARDS DE PRODUTO
   ============================================================ */
.card-produto {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.card-produto:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.card-produto-cat { font-size: .78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.card-produto-title { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: .75rem; }
.card-produto-desc { color: var(--text-muted); font-size: .95rem; }
.card-produto-lista { list-style: none; padding: 0; margin: .75rem 0 0; }
.card-produto-lista li { padding: .3rem 0; font-size: .92rem; }

/* Produto full */
.card-produto-full {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
}
.card-produto-header { background: var(--blue-light); padding: 1.75rem 2rem; }
.card-produto-cat-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--text);
  font-size: .75rem; font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.card-produto-title-lg { font-size: 1.75rem; font-weight: 800; color: var(--blue); margin: 0; }
.card-produto-body { padding: 2rem; }
.card-produto-cta { padding: 0 2rem 2rem; }

.lista-produto { list-style: none; padding: 0; margin: 0; }
.lista-produto li { padding: .35rem 0; font-size: .92rem; color: var(--text-muted); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gray-mid);
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute; left: -2.35rem; top: .35rem;
  width: 12px; height: 12px;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year {
  display: inline-block;
  background: var(--orange);
  color: var(--text);
  font-size: .78rem; font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 50px;
  margin-bottom: .4rem;
  letter-spacing: .04em;
}
.timeline-content p { color: var(--text-muted); font-size: .92rem; margin: .3rem 0 0; }

/* ============================================================
   MVV (Missão / Visão / Valores)
   ============================================================ */
.mvv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  text-align: center;
  transition: all var(--transition);
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mvv-icon {
  width: 60px; height: 60px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  margin: 0 auto 1.25rem;
}
.mvv-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; }
.mvv-lista { list-style: none; padding: 0; text-align: left; }
.mvv-lista li { padding: .3rem 0; font-size: .92rem; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferencial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.diferencial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }
.diferencial-icon {
  width: 60px; height: 60px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--orange);
  margin: 0 auto 1.25rem;
}
.diferencial-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.diferencial-card p  { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ============================================================
   PROCESSO
   ============================================================ */
.processo-step { position: relative; }
.processo-num {
  width: 36px; height: 36px;
  background: var(--orange);
  color: var(--text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800;
  margin: 0 auto .75rem;
}
.processo-icon {
  font-size: 1.75rem; color: var(--blue);
  margin-bottom: .75rem;
}
.processo-step h5 { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.processo-step p  { color: var(--text-muted); font-size: .88rem; }

/* ============================================================
   AVISO TÉCNICO
   ============================================================ */
.aviso-tecnico {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.aviso-icon { color: var(--blue); flex-shrink: 0; padding-top: .15rem; }
.aviso-tecnico h5 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.aviso-tecnico p  { color: var(--text-muted); font-size: .9rem; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-bottom: 4px solid var(--orange);
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,102,0,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header-title { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--white); font-weight: 800; margin: .5rem 0 .5rem; }
.page-header-sub   { color: rgba(255,255,255,.75); font-size: 1.05rem; margin: 0; }

.breadcrumb-light .breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-light .breadcrumb-item.active { color: rgba(255,255,255,.5); }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ============================================================
   CONTATO
   ============================================================ */
.form-control-zapi {
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .95rem;
  transition: border-color var(--transition);
}
.form-control-zapi:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,61,70,.1);
  outline: none;
}

.contato-info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
}
.contato-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--blue);
}
.text-whatsapp { color: #25D366 !important; }

.social-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.social-circle:hover { background: var(--orange); color: var(--text); }
.contato-info-card a { color: var(--text); }
.contato-info-card a:hover { color: var(--blue); }

/* ============================================================
   UNIDADES
   ============================================================ */
.unidade-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.unidade-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.unidade-header {
  background: var(--blue);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: .95rem;
}
.unidade-body { padding: 1.5rem; flex: 1; }
.unidade-body a { color: var(--text); }
.unidade-body a:hover { color: var(--blue); }
.unidade-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--gray-mid); }

/* ============================================================
   ONDE ENCONTRAR
   ============================================================ */
.onde-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.onde-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.onde-icon {
  font-size: 2rem; color: var(--blue);
  margin-bottom: .75rem;
}

/* ============================================================
   DETALHE DE SERVIÇO
   ============================================================ */
.detalhe-icon-wrap {
  display: inline-flex;
  width: 70px; height: 70px;
  background: var(--blue);
  border-radius: var(--radius);
  align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
}

/* Imagem destaque no topo do serviço */
.servico-detalhe-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-light);
  border: 1.5px solid var(--gray-mid);
}
.servico-detalhe-img img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.servico-areas-lista-lg { list-style: none; padding: 0; }
.servico-areas-lista-lg li { padding: .5rem 0; font-size: 1rem; border-bottom: 1px solid var(--gray-mid); }

.sidebar-cta {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  position: sticky; top: 100px;
}
.sidebar-cta h5 { font-weight: 700; margin-bottom: .5rem; }
.sidebar-info a { color: var(--text); }
.sidebar-info a:hover { color: var(--blue); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-top: 4px solid var(--orange);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,102,0,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-icon { color: rgba(255,255,255,.3); position: relative; z-index: 2; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); position: relative; z-index: 2; margin-bottom: .5rem; }
.cta-sub   { color: rgba(255,255,255,.8); font-size: 1.05rem; position: relative; z-index: 2; }

/* ============================================================
   MAPA
   ============================================================ */
.mapa-section { line-height: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-zapi {
  background: #34363e;
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.logo-icon-footer {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--text);
}
.logo-sub-footer { font-size: .6rem; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; }

.footer-about { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

.footer-title {
  color: var(--white); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-links a:hover { color: var(--orange); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .6rem; font-size: .88rem; }
.footer-contact i { color: var(--orange); flex-shrink: 0; margin-top: .25rem; }

.footer-social { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-social:hover { color: var(--orange); }

.footer-divider { border-color: rgba(255,255,255,.1); margin: 2rem 0 1.5rem; }
.footer-bottom { font-size: .82rem; color: rgba(255,255,255,.4); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  background: #1eb356;
  color: var(--white);
  transform: scale(1.1);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.8); }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 768px) {
  .section-block { padding: 3rem 0; }
  .hero-content  { padding: 3rem 0 2rem; }
  .hero-stats    { gap: 1.5rem; }
  .sobre-badge-anos { top: -15px; right: -10px; width: 90px; height: 90px; }
  .anos-num { font-size: 1.5rem; }
  .cta-section { padding: 3rem 0; }
  .footer-zapi { padding: 3rem 0 1.5rem; }
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 50px; height: 50px; font-size: 1.5rem; }
}

@media (max-width: 576px) {
  .hero-title  { font-size: 2rem; }
  .hero-stats  { gap: 1rem; }
  .stat-num    { font-size: 1.5rem; }
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-destaque {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-mid);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-destaque:hover { box-shadow: var(--shadow); }
.blog-destaque-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.blog-destaque-body { padding: 2rem; }
.badge-destaque {
  display: inline-block;
  background: var(--orange);
  color: var(--text);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 50px;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.blog-destaque-title { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: .5rem; }
.blog-destaque-data { color: var(--text-muted); font-size: .85rem; margin-bottom: 1rem; }
.blog-destaque-resumo { color: var(--text-muted); margin-bottom: 1.5rem; }

.blog-card-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.blog-card-link:hover { color: inherit; }
.blog-card {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--gray-mid);
  overflow: hidden;
  transition: all .3s ease;
  display: flex; flex-direction: column;
  height: 100%;
}
.blog-card-link:hover .blog-card {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(59,61,70,.15);
}
.blog-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff5cc 100%);
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card-img-fallback {
  object-fit: contain !important;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff5cc 100%);
}
.blog-card-link:hover .blog-card-img img { transform: scale(1.05); }

/* Badge de data sobreposto na imagem */
.blog-card-date-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--orange);
  color: var(--text);
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  letter-spacing: .02em;
}

.blog-card-body {
  padding: 1.4rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .65rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-resumo {
  font-size: .88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   GUIA DE APLICAÇÕES
   ============================================================ */
.guia-card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  padding: 1.25rem;
  align-items: flex-start;
  transition: all .25s ease;
  min-height: 130px;
}
.guia-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(59,61,70,.10);
  transform: translateY(-3px);
}
.guia-card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guia-card-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.guia-card-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--orange);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  border: 2px solid var(--white);
}
.guia-card-body { flex: 1; }
.guia-card-body p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.guia-card-body p strong, .guia-card-body p b { color: var(--blue); }

/* ============================================================
   BLOG V3 — Estrutura estilo Real Prazer (sidebar esq + grid)
   ============================================================ */

/* Hero */
.blog-hero {
  background: linear-gradient(180deg, rgba(253,197,37,.18) 0%, var(--white) 100%);
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}
.blog-hero + .section-block { padding-top: 1.5rem; }
.blog-hero-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: .5rem;
}
.blog-hero-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto 1.5rem;
}
.blog-hero-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.blog-hero-search i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.blog-hero-search input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 50px;
  padding: .85rem 1.5rem .85rem 2.85rem;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.blog-hero-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(253,197,37,.15);
}

/* Sidebar sticky */
.blog-sticky { position: sticky; top: 95px; display: flex; flex-direction: column; gap: 1rem; }

/* Cards da sidebar */
.rp-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  overflow: hidden;
}
.rp-card-header {
  font-size: .92rem;
  font-weight: 800;
  color: var(--blue);
  padding: .85rem 1rem;
  border-bottom: 2px solid var(--orange);
  background: var(--gray-light);
}

/* Lista de categorias */
.rp-cat-list { list-style: none; padding: .5rem; margin: 0; }
.rp-cat-list li { margin: 0; }
.rp-cat-list a {
  display: block;
  padding: .55rem .8rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .2s;
}
.rp-cat-list a:hover { background: var(--orange-light); color: var(--orange); }
.rp-cat-list a.active { background: var(--orange); color: var(--text); }

/* Produto em destaque na sidebar */
.rp-featured {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
.rp-featured:hover { background: var(--orange-light); color: inherit; }
.rp-featured img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--gray-light);
  border-radius: 8px;
  padding: 4px;
  flex-shrink: 0;
}
.rp-featured-body { flex: 1; }
.rp-featured-body strong {
  display: block;
  font-size: .9rem;
  color: var(--blue);
  margin-bottom: .15rem;
}
.rp-featured-body span {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.rp-card-footer-link {
  display: block;
  padding: .65rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  background: var(--gray-light);
  text-align: center;
  border-top: 1px solid var(--gray-mid);
}
.rp-card-footer-link:hover { background: var(--orange-light); color: var(--orange-dark); }

/* Tópicos populares */
.rp-topics { list-style: none; padding: .25rem 0; margin: 0; }
.rp-topics li { border-bottom: 1px solid var(--gray-mid); }
.rp-topics li:last-child { border-bottom: none; }
.rp-topics a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 1rem;
  text-decoration: none;
  color: var(--text);
  font-size: .88rem;
  font-weight: 600;
  transition: background .2s;
}
.rp-topics a:hover { background: var(--orange-light); color: var(--orange); }
.rp-topics a span {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Card CTA na sidebar */
.rp-card-cta {
  background: linear-gradient(135deg, var(--blue) 0%, #2a2c33 100%);
  color: var(--white);
  padding: 1.25rem;
  text-align: center;
  border-color: var(--blue);
}
.rp-card-cta strong { display: block; font-size: 1rem; margin-bottom: .35rem; }
.rp-card-cta p { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }

/* CARDS DO BLOG (main) */
.rp-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: all .25s ease;
}
.rp-blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 10px 28px rgba(59,61,70,.12);
  color: inherit;
}
.rp-blog-card-img {
  width: 100% !important;
  height: 200px !important;
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
  display: block;
}
.rp-blog-card-img img {
  width: 100% !important;
  height: 100% !important;
  max-height: 200px !important;
  object-fit: cover !important;
  display: block;
  transition: transform .3s ease;
  margin: 0 !important;
  border-radius: 0 !important;
}
.rp-blog-card:hover .rp-blog-card-img img { transform: scale(1.05); }
.rp-blog-card-noimg {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff5cc 100%);
  color: var(--orange-dark);
  font-size: 3rem;
}

.rp-blog-card-body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.rp-blog-card-meta {
  display: flex;
  gap: .65rem;
  align-items: center;
  font-size: .7rem;
  margin-bottom: .55rem;
  color: var(--text-muted);
}
.rp-blog-card-cat {
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: .15rem .55rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .03em;
}
.rp-blog-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: .55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rp-blog-card:hover .rp-blog-card-title { color: var(--orange); }
.rp-blog-card-resumo {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rp-blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .65rem;
  border-top: 1px solid var(--gray-mid);
  font-size: .75rem;
  color: var(--text-muted);
}
.rp-blog-card-read { color: var(--orange); font-weight: 700; }

/* Paginação estilo Real Prazer */
.rp-pag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.rp-pag-btn {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  padding: .55rem 1.1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: all .2s;
}
.rp-pag-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--text); }
.rp-pag-info { color: var(--text-muted); font-size: .9rem; }
.rp-pag-info strong { color: var(--blue); }

/* ============================================================
   BLOG V2 — Grid 3 colunas clean (LEGADO)
   ============================================================ */
.blog-search-top {
  position: relative;
  display: flex;
  gap: .5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.blog-search-top input {
  flex: 1;
  border: 1.5px solid var(--gray-mid);
  border-radius: 50px;
  padding: .75rem 1rem .75rem 2.75rem;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.blog-search-top input:focus { border-color: var(--orange); }
.blog-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.blog-search-top .btn { border-radius: 50px; padding: .65rem 1.5rem; }

.blog-card-v2 {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.blog-card-link:hover .blog-card-v2 {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(59,61,70,.12);
}
.blog-card-v2-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-light);
}
.blog-card-v2-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.blog-card-link:hover .blog-card-v2-img img { transform: scale(1.05); }

.blog-card-v2-noimg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff5cc 100%);
  color: var(--orange-dark);
  font-size: 3rem;
}

.blog-card-v2-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-v2-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  margin-bottom: .65rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.blog-card-v2-cat { color: var(--orange); }
.blog-card-v2-date { color: var(--text-muted); text-transform: uppercase; }

.blog-card-v2-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: .65rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link:hover .blog-card-v2-title { color: var(--orange); }

.blog-card-v2-resumo {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-v2-cta {
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}
.blog-card-link:hover .blog-card-v2-cta { color: var(--orange); }

/* ============================================================
   BLOG — LISTA VERTICAL (estilo Real Prazer)
   ============================================================ */
.blog-list { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-list-item {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
}
.blog-list-item:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(59,61,70,.12);
  transform: translateY(-3px);
  color: inherit;
}
.blog-list-img {
  flex-shrink: 0;
  width: 260px;
  height: 200px;
  overflow: hidden;
  background: var(--gray-light);
}
.blog-list-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.blog-list-img-fallback {
  padding: 1rem;
  object-fit: contain !important;
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff5cc 100%);
}
.blog-list-item:hover .blog-list-img img { transform: scale(1.05); }

.blog-list-body {
  flex: 1;
  padding: 1.25rem 1.5rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: .65rem;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.blog-list-cat { color: var(--orange); }
.blog-list-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: .65rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-list-item:hover .blog-list-title { color: var(--orange); }
.blog-list-resumo {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-list-cta {
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
}
.blog-list-item:hover .blog-list-cta { color: var(--orange); }

@media (max-width: 768px) {
  .blog-list-item { flex-direction: column; }
  .blog-list-img { width: 100%; height: 200px; }
  .blog-list-body { padding: 1.25rem; }
}

/* ============================================================
   BLOG SIDEBAR + PAGINAÇÃO
   ============================================================ */
.blog-sidebar { position: sticky; top: 100px; }

.blog-widget {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.blog-widget-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  padding-bottom: .65rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--orange);
}
.blog-widget-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-color: var(--blue-dark);
}

/* Recent posts */
.blog-recent-list { list-style: none; padding: 0; margin: 0; }
.blog-recent-list li { border-bottom: 1px solid var(--gray-mid); }
.blog-recent-list li:last-child { border-bottom: none; }
.blog-recent-list a {
  display: flex;
  gap: .75rem;
  padding: .65rem 0;
  text-decoration: none;
  color: var(--text);
  transition: color .2s;
}
.blog-recent-list a:hover { color: var(--orange); }
.blog-recent-thumb {
  width: 60px; height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-light);
}
.blog-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-recent-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.blog-recent-title { font-size: .88rem; font-weight: 600; line-height: 1.35; display: block; }
.blog-recent-data { font-size: .75rem; color: var(--text-muted); margin-top: .2rem; }

/* Tags */
.blog-tag {
  display: inline-block;
  background: var(--gray-light);
  color: var(--text);
  border: 1px solid var(--gray-mid);
  border-radius: 50px;
  padding: .3rem .8rem;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.blog-tag:hover { background: var(--orange); border-color: var(--orange); color: var(--text); }

/* Paginação */
.pagination-zapi .page-link {
  color: var(--blue);
  border: 1.5px solid var(--gray-mid);
  margin: 0 .15rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
}
.pagination-zapi .page-item.active .page-link {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--text);
}
.pagination-zapi .page-item.disabled .page-link {
  color: var(--text-muted);
  background: var(--gray-light);
}
.pagination-zapi .page-link:hover { background: var(--orange-light); border-color: var(--orange); }

/* Post individual */
.blog-post-img img { max-height: 400px; width: 100%; object-fit: cover; }

/* Conteúdo HTML do post — vindo do WP via content_html|safe */
.blog-post-content {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text);
}
.blog-post-content p {
  margin-bottom: 1.25rem;
}
.blog-post-content h2, .blog-post-content h3, .blog-post-content h4 {
  color: var(--blue);
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.blog-post-content h2 { font-size: 1.6rem; padding-bottom: .5rem; border-bottom: 2px solid var(--orange); }
.blog-post-content h3 { font-size: 1.3rem; }
.blog-post-content h4 { font-size: 1.1rem; }
.blog-post-content ul, .blog-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.blog-post-content ul li, .blog-post-content ol li {
  margin-bottom: .5rem;
}
.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
  display: block;
}
.blog-post-content a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}
.blog-post-content a:hover { color: var(--orange); }
.blog-post-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--orange-light);
  border-radius: 4px;
  font-style: italic;
}
.blog-post-content strong, .blog-post-content b { color: var(--blue); }
.blog-post-content table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
}
.blog-post-content table th, .blog-post-content table td {
  padding: .75rem;
  border: 1px solid var(--gray-mid);
  text-align: left;
}
.blog-post-content table th { background: var(--gray-light); font-weight: 700; }
.blog-post-content iframe { max-width: 100%; border-radius: 12px; margin: 1.5rem 0; }
.blog-post-content figure { margin: 1.5rem 0; }
.blog-post-content figcaption { font-size: .88rem; color: var(--text-muted); text-align: center; margin-top: .5rem; }

/* ============================================================
   INICIATIVAS RESPONSABILIDADE
   ============================================================ */
.iniciativa-card-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.iniciativa-card-link:hover { color: inherit; }
.iniciativa-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-mid);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.iniciativa-card-link:hover .iniciativa-card { transform: translateY(-5px); border-color: var(--orange); box-shadow: var(--shadow); }
.iniciativa-icon {
  width: 60px; height: 60px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.iniciativa-title { font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: .5rem; }
.iniciativa-text { font-size: .85rem; color: var(--text-muted); flex: 1; margin-bottom: .75rem; }

/* ============================================================
   PRODUTO DETALHE — sidebar de categorias
   ============================================================ */
.cat-sidebar {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  position: sticky;
  top: 100px;
}
.cat-sidebar-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .08em;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--orange);
}
.cat-sidebar-list { list-style: none; padding: 0; margin: 0; }
.cat-sidebar-list > li { padding: .35rem 0; }
.cat-sidebar-list > li > a {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  padding: .35rem 0;
}
.cat-sidebar-list > li > a:hover { color: var(--orange); }
.cat-sidebar-list > li.active > a { color: var(--blue); }

.cat-sidebar-sublist {
  list-style: none;
  padding-left: 1.5rem;
  margin: .25rem 0 .5rem;
  border-left: 2px solid var(--orange-light);
}
.cat-sidebar-sublist li a {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: .25rem 0 .25rem .5rem;
}
.cat-sidebar-sublist li a:hover { color: var(--orange); }
.cat-sidebar-sublist li.active a { color: var(--orange); font-weight: 700; }

/* ===== CARD-PRODUTO-MINI (usado nas páginas pilar) ===== */
.card-produto-mini {
  display: flex; gap: 14px; align-items: center;
  padding: 14px; background: var(--white);
  border: 1.5px solid var(--gray-mid); border-radius: var(--radius);
  text-decoration: none; color: var(--text);
  height: 100%; transition: all .15s ease;
}
.card-produto-mini:hover { border-color: var(--orange); transform: translateY(-2px); }
.card-produto-mini img { width: 72px; height: 72px; object-fit: contain; flex-shrink: 0; }
.card-produto-mini .card-icon-wrap {
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-zapi); border-radius: 50%; color: var(--text);
  font-size: 1.4rem;
}

.produto-img-destaque {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1.5px solid var(--gray-mid);
}
.produto-img-destaque img {
  max-height: 320px;
  width: auto;
  margin: 0 auto;
}

/* INSTITUCIONAL */
.loja-card-inst {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--gray-mid);
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}
.loja-card-inst:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.loja-icon {
  width: 60px; height: 60px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.loja-card-inst h5 { font-weight: 700; color: var(--blue); margin-bottom: .5rem; }
.loja-card-inst p { font-size: .92rem; margin-bottom: .25rem; }

.area-card-inst {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  border: 1.5px solid var(--gray-mid);
  transition: all var(--transition);
  height: 100%;
}
.area-card-inst:hover { border-color: var(--orange); transform: translateY(-3px); }
.area-card-inst strong { display: block; margin-bottom: .25rem; }

.dr-zapi-block {
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff 100%);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  border: 2px solid rgba(253,197,37,.3);
}
.dr-zapi-icon { color: var(--orange); }

/* RESPONSABILIDADE */
.responsabilidade-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.responsabilidade-icon {
  font-size: 4rem;
  color: var(--orange);
}
.resp-stat {
  background: rgba(255,255,255,.1);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
}
.resp-num { font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.resp-label { font-size: .85rem; opacity: .8; margin-top: .35rem; }

/* ============================================================
   HOME — CARROSSEL PRINCIPAL
   ============================================================ */
.hero-carousel {
  background: var(--blue-dark);
}
.hero-carousel .carousel-item img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}
.hero-carousel .carousel-indicators button {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--white);
  opacity: .5;
  border: 2px solid var(--white);
}
.hero-carousel .carousel-indicators .active { background: var(--orange); opacity: 1; border-color: var(--orange); }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-color: rgba(0,0,0,.4);
  border-radius: 50%;
  padding: 1.5rem;
  background-size: 50% 50%;
}

/* ============================================================
   HOME — MAPA + GOOGLE MAPS
   ============================================================ */
.mapa-home-section { padding: 3rem 0; background: var(--white); }
.mapa-link { display: inline-block; transition: transform .25s ease; }
.mapa-link:hover { transform: scale(1.01); }
.mapa-home-img {
  max-width: 100%;
  width: auto;
  border-radius: 12px;
  border: 1.5px solid var(--gray-mid);
}

/* ============================================================
   HOME — CARDS (foto em cima + painel branco)
   ============================================================ */
.cards-section {
  background: var(--white);
  padding: 4rem 0;
}
.cards-grid { /* container row */ }

.zcard {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all .25s ease;
}
.zcard:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(59,61,70,.12);
}

.zcard-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
}
.zcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zcard-body {
  padding: 1.5rem .5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.zcard-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .85rem;
  line-height: 1.25;
}
.zcard-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex: 1;
  max-width: 250px;
}
.zcard-btn {
  display: inline-block;
  text-decoration: none;
  border: 1.5px solid var(--text);
  color: var(--text);
  padding: .75rem 1.5rem;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  line-height: 1.35;
  transition: all .25s ease;
}
.zcard-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--text);
}

@media (max-width: 768px) {
  .cards-section { padding: 2.5rem 0; }
}

/* ============================================================
   HOME — HERO 4 CARDS COM BACKGROUND IMAGE
   ============================================================ */
.hero-cards-section { margin-top: 0; }
.hero-cards-grid { min-height: 380px; }

.hero-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  padding: 2rem 1.75rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: all .3s ease;
}
.hero-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.7) 100%);
  transition: background .3s ease;
}
.hero-card:hover .hero-card-overlay {
  background: linear-gradient(180deg, rgba(253,197,37,.25) 0%, rgba(59,61,70,.85) 100%);
}
.hero-card-content {
  position: relative; z-index: 2;
  width: 100%;
}
.hero-card-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .65rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero-card-content p {
  font-size: .92rem;
  color: rgba(255,255,255,.92);
  margin-bottom: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.hero-card-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--text);
  font-weight: 700;
  font-size: .85rem;
  padding: .55rem 1.15rem;
  border-radius: 50px;
  transition: background .25s ease;
}
.hero-card:hover .hero-card-cta { background: #fff; }

/* ============================================================
   HOME — ESSÊNCIA (logo + tagline)
   ============================================================ */
.essencia-section {
  background: var(--white);
  padding: 4rem 0 3.5rem;
}
.essencia-logo {
  max-width: 160px;
  margin-bottom: 1.5rem;
  height: auto;
}
.essencia-titulo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .04em;
  margin-bottom: .25rem;
}
.essencia-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.btn-zapi-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  font-weight: 700;
  font-size: .92rem;
  padding: .55rem 1.6rem;
  border-radius: 50px;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-zapi-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* ============================================================
   HOME — A ZAPI EXPLICA (links em grid)
   ============================================================ */
.explica-section {
  background: var(--gray-light);
  padding: 4rem 0;
}
.explica-tag {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--orange);
  text-transform: uppercase;
  background: rgba(253,197,37,.12);
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.explica-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1rem;
}
.explica-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: .88rem;
  text-align: center;
  min-height: 130px;
  justify-content: center;
  transition: all .25s ease;
}
.explica-link i {
  font-size: 1.6rem;
  color: var(--orange);
}
.explica-link:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(59,61,70,.12);
  color: var(--blue);
}

/* ============================================================
   HOME — SELOS / CERTIFICAÇÕES
   ============================================================ */
.selos-section {
  background: var(--white);
  padding: 3rem 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}
.selo-img {
  max-height: 70px;
  width: auto;
  max-width: 100%;
  filter: grayscale(20%);
  opacity: .85;
  transition: all .25s ease;
}
.selo-img:hover { filter: none; opacity: 1; transform: scale(1.05); }

/* ============================================================
   HOME — CONTATO + LOCALIZAÇÕES
   ============================================================ */
.contato-section {
  background: var(--gray-light);
  padding: 4rem 0;
}
.contato-icons { margin-top: 1.5rem; }
.contato-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  transition: all .25s ease;
  text-decoration: none;
}
.contato-icon:hover {
  background: var(--orange);
  color: var(--text);
  transform: translateY(-3px);
}

.loja-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1.5px solid var(--gray-mid);
  height: 100%;
  transition: all .25s ease;
}
.loja-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(59,61,70,.1); }
.loja-card .loja-icon {
  width: auto; height: auto;
  background: transparent;
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: .75rem;
}
.loja-card h5 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .5rem;
}
.loja-card p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
}
.mapa-img {
  border: 1px solid var(--gray-mid);
}

/* Cards mobile: empilhar suave */
@media (max-width: 768px) {
  .hero-cards-grid { min-height: auto; }
  .hero-card { min-height: 280px; }
  .essencia-section, .explica-section, .contato-section { padding: 2.5rem 0; }
}

/* ============================================================
   HOME — 4 CARDS DESTAQUE (estilo painéis coloridos)
   ============================================================ */
.home-card-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.home-card-link:hover { color: inherit; }

.home-card {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.home-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.15) 100%);
  pointer-events: none;
}
.home-card > * { position: relative; z-index: 1; }

.home-card-link:hover .home-card { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }

.home-card-1 { background: linear-gradient(135deg, #3B3D46 0%, #2a2c33 100%); }
.home-card-2 { background: linear-gradient(135deg, #FDC525 0%, #e0ab0f 100%); color: var(--text); }
.home-card-3 { background: linear-gradient(135deg, #2a2c33 0%, #1a1c23 100%); }
.home-card-4 { background: linear-gradient(135deg, #FDC525 0%, #e0ab0f 100%); color: var(--text); }

.home-card-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.home-card-2 .home-card-icon, .home-card-4 .home-card-icon { background: rgba(0,0,0,.12); }

.home-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .65rem;
  line-height: 1.25;
}
.home-card-text {
  font-size: .92rem;
  opacity: .9;
  flex: 1;
  margin-bottom: 1rem;
}
.home-card-cta {
  font-weight: 700;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
}

/* ESSÊNCIA STATS */
.essencia-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.essencia-stat {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.essencia-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .5rem;
}
.essencia-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* A ZAPI EXPLICA */
.explica-block {
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff 100%);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  border: 1.5px solid rgba(253,197,37,.3);
}

/* ============================================================
   PÁGINA DE SERVIÇOS — NOVO LAYOUT
   ============================================================ */

.servico-side-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}

.info-row {
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-mid);
}
.info-row:last-of-type { border-bottom: none; }
.info-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .25rem;
}
.info-value {
  font-size: .92rem;
  color: var(--text);
  font-weight: 600;
}

.lista-check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lista-check li {
  padding: .4rem 0;
  font-size: 1rem;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: .35rem;
  line-height: 1.5;
}

/* Blocos de informação na página de detalhe */
.bloco-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1.5px solid var(--gray-mid);
  font-size: 1rem;
  line-height: 1.7;
}
.bloco-info p { font-size: 1rem; line-height: 1.7; margin-bottom: .75rem; }
.bloco-info .accordion-body { font-size: 1rem; line-height: 1.7; }
.bloco-info .accordion-button { font-size: 1rem; }
.bloco-info-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
}
.bloco-alerta {
  border-left: 4px solid var(--orange);
  background: var(--orange-light);
}

.spec-card {
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  height: 100%;
}
.spec-card strong {
  display: block;
  font-size: .9rem;
  color: var(--blue);
  margin-bottom: .25rem;
}
.spec-card p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.proc-mini {
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  position: relative;
}
.proc-mini-num {
  width: 32px; height: 32px;
  background: var(--orange);
  color: var(--text);
  border-radius: 50%;
  font-weight: 800;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .5rem;
}
.proc-mini strong { display: block; font-size: .92rem; }

/* ============================================================
   PÁGINA DE PRODUTOS — CATEGORIAS
   ============================================================ */

/* Links do índice rápido */
.badge-cat-link {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  border: 1.5px solid var(--gray-mid);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .85rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.badge-cat-link:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* Cabeçalho de categoria */
.categoria-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.categoria-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--text);
}
.categoria-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  color: var(--blue);
}
.categoria-divisor {
  border-color: var(--gray-mid);
  margin: 2.5rem 0;
}

/* Card de produto na grid */
.card-produto-grid {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card-produto-grid:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-produto-img-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}
.card-produto-img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}
.card-produto-grid:hover .card-produto-img {
  transform: scale(1.05);
}

.card-produto-grid-nome {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .6rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.card-produto-grid-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: .75rem;
}
.card-produto-grid-apps {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.app-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--text);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .65rem;
}

/* ============================================================
   ANIMAÇÕES (controladas pelo JS via IntersectionObserver)
   ============================================================ */
.fade-in-hidden {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar com sombra após scroll */
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.25) !important;
}
