/* ============================================================
   SITE VITRINE — PEÇAS & COMPONENTES TÉCNICOS
   Estilo: Clean Tech Industrial | Mobile-First
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg:            #F0F2F5;
  --bg-card:       #FFFFFF;
  --bg-nav:        #1d3c6d;
  --text-primary:  #0F172A;
  --text-secondary:#475569;
  --text-muted:    #94A3B8;
  --accent:        #2563EB;
  --accent-light:  #EFF6FF;
  --border:        #E2E8F0;
  --shadow-sm:     0 1px 3px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.06);
  --shadow-md:     0 4px 16px rgba(15,23,42,.10), 0 2px 6px rgba(15,23,42,.06);
  --shadow-lg:     0 12px 40px rgba(15,23,42,.15);
  --radius:        10px;
  --radius-lg:     16px;
  --transition:    .22s cubic-bezier(.4,0,.2,1);
  --ml-yellow:     #FFF159;
  --ml-text:       #1A1A1A;
  --shopee-orange: #EE4D2D;
  --wpp-green:     #25D366;
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================ HEADER sticky ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ============================================================ NAVBAR ============================================================ */
.navbar { background: var(--bg-nav); box-shadow: 0 2px 16px rgba(0,0,0,.18); }
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.navbar__logo { 
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 160px; }

.navbar__logo-icon {
  width: 36px; height: 36px; background: var(--accent);
  border-radius: 8px; display: grid; place-items: center;
}
.navbar__logo-icon svg { fill: #fff; }
.navbar__brand {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  color: #fff; letter-spacing: -.01em; line-height: 1.15;
}
.navbar__brand span {
  display: block; font-size: .68rem; font-weight: 400;
  color: #94A3B8; letter-spacing: .06em; text-transform: uppercase;
}
.navbar__tagline { display: none; color: #64748B; font-size: .8rem; letter-spacing: .03em; }
@media (min-width: 768px) { .navbar__tagline { display: block; } }
.navbar__contact {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 7px 14px; color: #fff;
  font-size: .82rem; font-weight: 500; transition: background var(--transition);
}
.navbar__contact:hover { background: rgba(255,255,255,.12); }

/* ============================================================ HERO ============================================================ */
.hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 60%, #0F172A 100%);
  padding: 40px 0 36px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(37,99,235,.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(37,99,235,.1) 0%, transparent 50%);
}
.hero__inner { position: relative; text-align: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,99,235,.18); border: 1px solid rgba(37,99,235,.35);
  border-radius: 100px; padding: 4px 14px;
  font-size: .75rem; font-weight: 600; color: #93C5FD;
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  margin-bottom: 10px; letter-spacing: -.02em;
}
.hero__title em { font-style: normal; color: #60A5FA; }
.hero__sub { color: #94A3B8; font-size: .95rem; max-width: 480px; margin: 0 auto; }

/* ============================================================ FILTROS ============================================================ */
.filters-bar {
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.filters-bar__inner { padding: 12px 0; display: flex; flex-direction: column; gap: 12px; }
.search-wrap { position: relative; }
.search-wrap__icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
#campoBusca {
  width: 100%; height: 44px; padding: 0 16px 0 44px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem;
  color: var(--text-primary); background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
#campoBusca::placeholder { color: var(--text-muted); }
#campoBusca:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,.12); background: #fff;
}
.categories-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
}
.categories-scroll::-webkit-scrollbar { display: none; }
.categories-list {
  display: flex; gap: 8px; list-style: none;
  padding: 0 2px 2px; width: max-content; min-width: 100%;
}
.btn-categoria {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap; padding: 7px 16px;
  border-radius: 100px; border: 1.5px solid var(--border);
  background: #fff; color: var(--text-secondary);
  font-size: .82rem; font-weight: 500; transition: all var(--transition);
}
.btn-categoria:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.btn-categoria.ativo { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,.25); }
.btn-categoria__count { background: rgba(255,255,255,.22); border-radius: 100px; padding: 1px 7px; font-size: .73rem; font-weight: 600; }
.btn-categoria:not(.ativo) .btn-categoria__count { background: var(--bg); color: var(--text-muted); }

/* ============================================================
   MARCAS QUE ATENDEMOS
   ============================================================ */
.marcas-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.marcas-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.marcas-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 4px;
  border-right: 1px solid var(--border);
  margin-right: 4px;
}
.marcas-lista {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}
.marca-pill {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  letter-spacing: .02em;
  transition: all var(--transition);
}
.marca-pill:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   COMO COMPRAR
   ============================================================ */
.como-comprar {
  background: var(--bg-nav);
  padding: 36px 0;
}
.como-comprar__title {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}
.como-comprar__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .como-comprar__steps { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.step__num {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.step__body { display: flex; flex-direction: column; gap: 3px; }
.step__title {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}
.step__desc { font-size: .8rem; color: #64748B; line-height: 1.5; }

/* Seta entre steps (desktop) */
@media (min-width: 640px) {
  .como-comprar__steps {
    position: relative;
    align-items: center;
  }
}

/* ============================================================ VITRINE ============================================================ */
.vitrine-section { padding: 28px 0 48px; flex: 1; }
.vitrine-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px; gap: 12px;
}
.vitrine-header__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-primary); }
.vitrine-header__count { font-size: .8rem; color: var(--text-muted); }

#gridProdutos { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px)  { #gridProdutos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { #gridProdutos { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { #gridProdutos { grid-template-columns: repeat(5, 1fr); } }

.card-produto {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: fadeInUp .35s ease both;
}
.card-produto:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #CBD5E1; }
.card-produto:nth-child(1)  { animation-delay: .04s; }
.card-produto:nth-child(2)  { animation-delay: .08s; }
.card-produto:nth-child(3)  { animation-delay: .12s; }
.card-produto:nth-child(4)  { animation-delay: .16s; }
.card-produto:nth-child(5)  { animation-delay: .20s; }
.card-produto:nth-child(6)  { animation-delay: .24s; }
.card-produto:nth-child(7)  { animation-delay: .28s; }
.card-produto:nth-child(8)  { animation-delay: .32s; }
.card-produto:nth-child(n+9){ animation-delay: .36s; }

.card-produto__img-wrap {
  position: relative; aspect-ratio: 1 / 1; background: var(--bg); overflow: hidden;
}
.card-produto__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-produto:hover .card-produto__img-wrap img { transform: scale(1.04); }
.card-produto__badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(15,23,42,.72); backdrop-filter: blur(4px);
  color: #fff; font-size: .65rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
}
.card-produto__body { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.card-produto__nome {
  font-family: var(--font-display); font-size: .85rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-produto__desc {
  font-size: .78rem; color: var(--text-secondary); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1;
}
.card-produto__lojas { display: flex; gap: 5px; flex-wrap: wrap; }
.loja-pill { font-size: .65rem; font-weight: 700; border-radius: 4px; padding: 2px 7px; letter-spacing: .02em; }
.loja-pill--ml     { background: var(--ml-yellow); color: var(--ml-text); }
.loja-pill--shopee { background: var(--shopee-orange); color: #fff; }

.btn-detalhe {
  display: block; width: 100%; padding: 9px 0;
  background: var(--text-primary); color: #fff;
  font-size: .8rem; font-weight: 600; border: none; border-radius: 8px;
  text-align: center; letter-spacing: .02em;
  transition: background var(--transition), transform var(--transition);
}
.btn-detalhe:hover { background: var(--accent); transform: scale(1.01); }

.sem-resultados { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--text-muted); }
.sem-resultados__icon { font-size: 3rem; margin-bottom: 12px; }
.sem-resultados__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 6px; }

/* ============================================================ DETALHE ============================================================ */
.detalhe-section { padding: 32px 0 56px; flex: 1; }
.detalhe-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .detalhe-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 40px; } }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.detalhe-img-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow-md); }
.detalhe-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.detalhe-info { display: flex; flex-direction: column; gap: 20px; }
.detalhe-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--accent-light); color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; width: fit-content; }
.detalhe-nome { font-family: var(--font-display); font-size: clamp(1.3rem, 4vw, 2rem); font-weight: 800; color: var(--text-primary); line-height: 1.2; letter-spacing: -.02em; }
.detalhe-desc { font-size: .92rem; color: var(--text-secondary); line-height: 1.7; padding: 16px; background: var(--bg); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; }
.detalhe-botoes { display: flex; flex-direction: column; gap: 12px; }
.btn-loja { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 20px; border-radius: 10px; border: none; font-family: var(--font-body); font-size: .9rem; font-weight: 700; letter-spacing: .02em; transition: all var(--transition); text-align: center; }
.btn-loja:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); filter: brightness(1.05); }
.btn-loja:active { transform: scale(.98); }
.btn-loja--ml     { background: var(--ml-yellow); color: var(--ml-text); }
.btn-loja--shopee { background: var(--shopee-orange); color: #fff; }
.btn-loja--wpp    { background: var(--wpp-green); color: #fff; }
.aviso-shopee { font-size: .78rem; color: var(--text-muted); text-align: center; padding: 8px 12px; background: var(--bg); border-radius: 8px; border: 1px dashed var(--border); }

/* ============================================================ FOOTER ============================================================ */
footer { background: var(--bg-nav); color: #94A3B8; padding: 40px 0 28px; margin-top: auto; }
.footer__grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo-icon { width: 32px; height: 32px; background: var(--accent); border-radius: 7px; display: grid; place-items: center; }
.footer__logo-name { font-family: var(--font-display); font-size: .95rem; font-weight: 800; color: #fff; }
.footer__about { font-size: .82rem; line-height: 1.6; max-width: 260px; }
.footer__heading { font-family: var(--font-display); font-size: .78rem; font-weight: 700; color: #fff; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: .83rem; color: #94A3B8; transition: color var(--transition); }
.footer__links a:hover { color: #fff; }
.footer__coming-soon { grid-column: 1 / -1; margin-top: 8px; padding: 16px 20px; background: linear-gradient(90deg, rgba(37,99,235,.12) 0%, rgba(37,99,235,.06) 100%); border: 1px solid rgba(37,99,235,.25); border-radius: 10px; display: flex; align-items: center; gap: 14px; }
.footer__cs-icon { font-size: 1.6rem; flex-shrink: 0; }
.footer__cs-text { font-size: .82rem; color: #94A3B8; line-height: 1.5; }
.footer__cs-text strong { color: #93C5FD; }
.footer__bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .75rem; color: #475569; }

/* ============================================================ ERRO ============================================================ */
.erro-estado { text-align: center; padding: 80px 20px; max-width: 400px; margin: 0 auto; }
.erro-estado__code { font-family: var(--font-display); font-size: 5rem; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 12px; }
.erro-estado__msg { font-size: .95rem; color: var(--text-secondary); margin-bottom: 24px; }
.btn-voltar { display: inline-flex; align-items: center; gap: 8px; background: var(--text-primary); color: #fff; padding: 11px 24px; border-radius: 8px; font-size: .87rem; font-weight: 600; transition: background var(--transition); }
.btn-voltar:hover { background: var(--accent); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wpp-green);
  color: #fff;
  border-radius: 100px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  font-size: .85rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wpp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}
.wpp-float:active { transform: scale(.97); }
.wpp-float svg { flex-shrink: 0; }

/* No mobile esconde o texto e mostra só o ícone */
.wpp-float__text { display: none; }
@media (min-width: 480px) { .wpp-float__text { display: inline; } }

/* Pulsa suavemente para chamar atenção */
@keyframes wppPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.6); }
}
.wpp-float { animation: wppPulse 2.5s ease-in-out infinite; }
.wpp-float:hover { animation: none; }

/* ============================================================ UTILITÁRIOS ============================================================ */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CARROSSEL DE MARCAS (loop automático via CSS)
   ============================================================ */
.marcas-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0 16px;
  overflow: hidden;
}
.marcas-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
.marcas-track-wrap {
  width: 100%;
  overflow: hidden;
  /* fade nas bordas */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.marcas-track {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  animation: marcasScroll 22s linear infinite;
}


@keyframes marcasScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move metade (os itens duplicados reiniciam) */
}

.marca-logo-item { flex-shrink: 0; }

.marca-logo-wrap {
  width: 130px;
  height: 64px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
  /* Quando tiver logo: remova o padding e deixe a imagem preencher */
  padding: 10px 16px;
}
.marca-logo-wrap:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
/* Placeholder de texto — remova quando inserir a logo real */
.marca-logo-nome {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}
/* Quando inserir logo real: <img src="logos/henry.png" alt="Henry" /> */
.marca-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(.6);
  transition: filter var(--transition);
}
.marca-logo-wrap:hover img {
  filter: grayscale(0) opacity(1);
}

/* ============================================================
   NOSSOS SERVIÇOS
   ============================================================ */
.servicos-section {
  padding: 56px 0;
  background: var(--bg);
}
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .servicos-grid { grid-template-columns: repeat(3, 1fr); }
}
.servico-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
/* Card do meio em destaque */
.servico-card--destaque {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.servico-card__icon { font-size: 2rem; }
.servico-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
}
.servico-card__desc {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.servico-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap var(--transition);
  gap: 4px;
  margin-top: 4px;
}
.servico-card__cta:hover { gap: 8px; }

/* ============================================================
   BANNER DE ÁREA DE ATENDIMENTO
   ============================================================ */
.atendimento-banner {
  background: linear-gradient(90deg, #1E3A5F 0%, #0F172A 100%);
  padding: 20px 0;
}
.atendimento-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .atendimento-inner { text-align: left; justify-content: space-between; }
}
.atendimento-icon { font-size: 1.4rem; flex-shrink: 0; }
.atendimento-texto {
  font-size: .88rem;
  color: #94A3B8;
  line-height: 1.5;
  flex: 1;
}
.atendimento-texto strong { color: #fff; }
.atendimento-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: var(--wpp-green);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  transition: filter var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.atendimento-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }