/* ============================================================
   Extras — Busca, Estoque, Embeds Sociais, SEO
   Forcemak Prime
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   CAPTCHA WHATSAPP — modal de verificação
   ════════════════════════════════════════════════════════════ */
.wacaptcha-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: wacFadeIn 0.18s ease;
}
@keyframes wacFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.wacaptcha-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  animation: wacSlideUp 0.22s ease;
}
@keyframes wacSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wacaptcha-header {
  background: #4a4a4a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wacaptcha-header span {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wacaptcha-body {
  padding: 24px 20px 20px;
  border: 1.5px solid #d3d3d3;
  border-top: none;
  border-radius: 0 0 12px 12px;
}
.wacaptcha-check-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wacaptcha-checkbox {
  width: 26px;
  height: 26px;
  border: 2px solid #c1c1c1;
  border-radius: 3px;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}
.wacaptcha-checkbox:hover {
  border-color: #aaa;
}
.wacaptcha-checkbox.loading {
  border-color: transparent;
}
.wacaptcha-checkbox.done {
  background: #1a73e8;
  border-color: #1a73e8;
}
.wacaptcha-spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid #eee;
  border-top-color: #4a90d9;
  border-radius: 50%;
  animation: wacSpin 0.7s linear infinite;
  position: absolute;
}
@keyframes wacSpin {
  to { transform: rotate(360deg); }
}
.wacaptcha-checkmark {
  display: none;
  width: 14px;
  height: 14px;
  position: absolute;
}
.wacaptcha-checkmark::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.wacaptcha-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #333;
  user-select: none;
}
.wacaptcha-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  gap: 2px;
}
.wacaptcha-brand__logo {
  font-size: 1.4rem;
  line-height: 1;
}
.wacaptcha-brand__nome {
  font-size: 0.58rem;
  color: #aaa;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}
.wacaptcha-footer {
  font-size: 0.68rem;
  color: #aaa;
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.wacaptcha-footer a {
  color: #4a90d9;
  text-decoration: none;
}
.wacaptcha-footer a:hover { text-decoration: underline; }


/* Fix: prevent horizontal scroll on mobile */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Botões largos no detalhe dos serviços no mobile */
@media (max-width: 768px) {
  .srv-card__detalhe .btn {
    width: 100%;
    text-align: center;
    white-space: normal;
    box-sizing: border-box;
  }
}

/* ════════════════════════════════════════════════════════════
   DOIS PAINÉIS — HERO PRINCIPAL (Mobile-first)
   ════════════════════════════════════════════════════════════ */

@keyframes kenBurnsZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.04); }
}

@keyframes floatIcon {
  0%, 100% { transform: translate(-50%, -55%) scale(1);   }
  50%       { transform: translate(-50%, -59%) scale(1.04); }
}

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

/* Container do painel hero (tela cheia) */
.painel-hero {
  display: block;
  width: 100%;
}

.painel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Painel tela cheia — equipamentos */
.painel--fullscreen {
  width: 100%;
  height: 34vh;
  min-height: 200px;
  max-height: 340px;
}

/* Carousel contido — não full-bleed */
.painel--card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}

/* Conteúdo centralizado no painel hero */
.painel__conteudo--hero {
  max-width: 480px;
  padding: 20px 32px 32px;
}

.painel__titulo--hero {
  font-size: clamp(1.3rem, 2.8vw, 2rem) !important;
  margin-bottom: 4px !important;
}

.painel__desc--hero {
  font-size: 0.82rem !important;
  display: block !important;
  max-width: 380px;
  margin-bottom: 14px !important;
}

.painel__btn--hero {
  max-width: 280px;
  font-size: 0.9rem;
  padding: 13px 20px;
  min-height: 48px;
}

/* Slides container */
.painel__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.painel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.0);
  transition: opacity 1.0s ease, transform 1.0s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.painel__slide.ativo {
  opacity: 1;
  transform: scale(1.0);
  animation: kenBurnsZoom 10s ease-in-out forwards;
}

/* Large icon in background of each slide */
.slide-icone-bg {
  font-size: clamp(6rem, 14vw, 11rem);
  opacity: 0.13;
  user-select: none;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  animation: floatIcon 6s ease-in-out infinite;
}

/* Navigation arrows */
.painel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(0,0,0,0.38);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
  padding: 0;
  backdrop-filter: blur(6px);
  font-size: 1rem;
}
.painel__arrow--prev { left: 12px; }
.painel__arrow--next { right: 12px; }

.painel:hover .painel__arrow {
  opacity: 1;
}
.painel__arrow:hover {
  background: rgba(0,0,0,0.65);
  transform: translateY(-50%) scale(1.1);
}
.painel__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

/* Dark gradient overlay */
.painel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.42) 50%,
    rgba(0,0,0,0.84) 100%
  );
}

.painel__overlay--serv {
  background: linear-gradient(
    to bottom,
    rgba(10,20,40,0.2)  0%,
    rgba(10,20,40,0.50) 50%,
    rgba(10,20,40,0.88) 100%
  );
}

/* Vertical divider between panels on desktop */
.painel--equip {
  border-right: 1px solid rgba(255,255,255,0.12);
}

/* Content pinned to bottom of each panel */
.painel__conteudo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px 32px;
  z-index: 2;
  color: white;
}

/* Current slide info row (updates per slide) */
.painel__slide-info {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  min-height: 22px;
}

.painel__item-cat {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
}

.painel__item-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
}

.painel__item-nome {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  transition: opacity 0.35s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

/* Stock/service badge */
.painel__badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.painel__badge--verde  { background: rgba(34,197,94,0.22);  color: #4ade80; }
.painel__badge--amarelo{ background: rgba(245,158,11,0.22); color: #fbbf24; }
.painel__badge--cinza  { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); }

/* Panel main title */
.painel__titulo {
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 6px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}

.painel__titulo strong        { color: var(--laranja); }
.painel__titulo strong.titulo-azul { color: #7dc4ff; }

.painel__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* CTA buttons — large touch targets */
.painel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 15px 20px;
  border-radius: 9px;
  transition: all 0.3s ease;
  min-height: 52px;
  border: 2px solid transparent;
  cursor: pointer;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.painel__btn--laranja {
  background: var(--laranja);
  color: white;
  border-color: var(--laranja);
}
.painel__btn--laranja:hover {
  background: var(--laranja-hover);
  border-color: var(--laranja-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,98,42,0.55);
}

.painel__btn--branco {
  background: rgba(255,255,255,0.14);
  color: white;
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
}
.painel__btn--branco:hover {
  background: rgba(255,255,255,0.24);
  border-color: white;
  transform: translateY(-2px);
}

/* Carousel dot indicators — bottom center */
.painel__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.painel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
  flex-shrink: 0;
}

.painel__dot.ativo {
  background: var(--laranja);
  width: 22px;
  border-radius: 3px;
}


/* ════════════════════════════════════════════════════════════
   SEÇÃO CONTEÚDOS ESPECIAIS (YouTube)
   ════════════════════════════════════════════════════════════ */
.conteudos-especiais {
  padding: 84px 0;
  background: #07111e;
  position: relative;
  overflow: hidden;
}

.conteudos-especiais::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,98,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.conteudos-especiais .secao-titulo   { color: white; }
.conteudos-especiais .secao-subtitulo{ color: rgba(255,255,255,0.5); }
.conteudos-especiais .secao-etiqueta {
  background: rgba(232,98,42,0.15);
  color: #f08050;
}

.videos-especiais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Single video takes full width */
.videos-especiais-grid.um-video {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.video-especial-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 44px rgba(0,0,0,0.55);
  background: #000;
  aspect-ratio: 16/9;
  position: relative;
}

.video-especial-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.videos-especiais-empty {
  text-align: center;
  padding: 52px 24px;
  position: relative;
  z-index: 1;
}

.videos-especiais-empty__icone {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.45;
}

.videos-especiais-cta {
  text-align: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVO — DOIS PAINÉIS & VÍDEOS
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .dois-paineis {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    min-height: auto;
  }

  /* Mobile: painel hero */
  .painel--fullscreen {
    height: 44vh !important;
    min-height: 240px !important;
    max-height: none !important;
  }

  .painel__conteudo--hero {
    padding: 20px 20px 32px;
    max-width: 100%;
  }

  .painel__titulo--hero {
    font-size: 1.25rem !important;
  }

  .painel__btn--hero {
    max-width: 100%;
    font-size: 1.1rem;
    min-height: 64px;
  }

  .painel--equip {
    border-right: none;
  }

  /* Descrição visível no mobile (curta) */
  .painel__desc {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 14px;
    display: block;
  }

  .painel__conteudo {
    padding: 20px 20px 28px;
  }

  .painel__titulo {
    font-size: 1.55rem;
    margin-bottom: 8px;
  }

  /* Botão grande — fácil de clicar com polegar */
  .painel__btn {
    font-size: 1.05rem;
    min-height: 60px;
    padding: 18px 20px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .painel__dots {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Setas laterais sempre visíveis no mobile */
  .painel__arrow {
    opacity: 0.85;
    width: 36px;
    height: 36px;
  }
  .painel:hover .painel__arrow {
    opacity: 0.85;
  }

  /* Ícone de categoria maior e mais visível */
  .slide-icone-bg {
    font-size: clamp(7rem, 22vw, 11rem);
    opacity: 0.10;
  }

  .videos-especiais-grid {
    grid-template-columns: 1fr;
  }

  .conteudos-especiais {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .painel--fullscreen {
    height: 40vh !important;
    min-height: 220px !important;
  }

  .painel__titulo {
    font-size: 1.25rem;
  }
}



/* ════════════════════════════════════════════════════════════
   YOUTUBE THUMBNAILS GRID + MODAL
   ════════════════════════════════════════════════════════════ */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.yt-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.yt-thumb:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 44px rgba(0,0,0,0.65);
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.yt-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s ease;
}
.yt-thumb:hover .yt-thumb__play { background: rgba(0,0,0,0.1); }

.yt-thumb__play svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
  transition: transform 0.2s ease;
}
.yt-thumb:hover .yt-thumb__play svg { transform: scale(1.12); }

.yt-thumb__titulo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 0 0 12px 12px;
  pointer-events: none;
}

/* Modal */
.yt-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInModal 0.2s ease;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.yt-modal__inner {
  position: relative;
  width: 100%;
  max-width: 860px;
}

.yt-modal__fechar {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.yt-modal__fechar:hover { opacity: 1; }

.yt-modal__iframe-wrap {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.yt-modal__iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .yt-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .yt-thumb__play svg { width: 40px; height: 40px; }
  .yt-modal { padding: 12px; }
}

@media (max-width: 480px) {
  .yt-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   PÁGINA PRODUTOS — LAYOUT COM SIDEBAR
   ════════════════════════════════════════════════════════════ */
.produtos-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* ─── Sidebar de Filtros ─────────────────────────────────── */
.filtros-sidebar {
  background: var(--branco);
  border-radius: var(--radius);
  border: 1px solid var(--cinza-borda);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.filtros-sidebar__titulo {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cinza-borda);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Busca */
.busca-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.busca-wrapper__icone {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cinza-texto);
  font-size: 1rem;
  pointer-events: none;
}

.busca-input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--preto-titulo);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.busca-input:focus {
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(28,58,94,0.1);
}

/* Seção de filtro */
.filtro-grupo {
  margin-bottom: 24px;
}

.filtro-grupo__titulo {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cinza-texto);
  margin-bottom: 12px;
}

.filtro-opcao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  cursor: pointer;
  user-select: none;
}

.filtro-opcao input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--azul);
  cursor: pointer;
  margin-right: 8px;
  flex-shrink: 0;
}

.filtro-opcao__label {
  font-size: 0.85rem;
  color: var(--preto-titulo);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filtro-opcao__contagem {
  font-size: 0.72rem;
  background: var(--cinza-fundo);
  color: var(--cinza-texto);
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 600;
}

/* Toggle estoque */
.toggle-estoque {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--cinza-borda);
  cursor: pointer;
}

.toggle-estoque__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--preto-titulo);
  display: flex;
  align-items: center;
  gap: 6px;
}

.toggle-switch {
  width: 40px;
  height: 22px;
  background: var(--cinza-borda);
  border-radius: 11px;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--branco);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.toggle-switch.ativo {
  background: var(--azul);
}

.toggle-switch.ativo::after {
  transform: translateX(18px);
}

/* Limpar filtros */
.btn-limpar-filtros {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--cinza-texto);
  margin-top: 16px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--cinza-borda);
  background: none;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transicao);
}

.btn-limpar-filtros:hover {
  border-color: var(--laranja);
  color: var(--laranja);
}

/* ─── Resultados ─────────────────────────────────────────── */
.resultados-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.resultados-contagem {
  font-size: 0.88rem;
  color: var(--cinza-texto);
}

.resultados-contagem strong {
  color: var(--preto-titulo);
  font-weight: 700;
}

.ordenar-select {
  padding: 8px 14px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: var(--preto-titulo);
  outline: none;
  cursor: pointer;
  background: var(--branco);
}

/* ─── Badges de Estoque ──────────────────────────────────── */
.estoque-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.estoque-badge--disponivel {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

.estoque-badge--ultima {
  background: rgba(245,158,11,0.1);
  color: #d97706;
}

.estoque-badge--indisponivel {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
}

.estoque-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.estoque-badge--disponivel   .estoque-badge__dot { background: #22c55e; }
.estoque-badge--ultima       .estoque-badge__dot { background: #f59e0b; animation: piscar 1.5s infinite; }
.estoque-badge--indisponivel .estoque-badge__dot { background: #ef4444; }

/* Produto sem estoque fica com visual reduzido */
.produto-card.sem-estoque {
  opacity: 0.65;
  position: relative;
}

.produto-card.sem-estoque::after {
  content: 'INDISPONÍVEL';
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(239,68,68,0.9);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ─── Sem resultados ─────────────────────────────────────── */
.sem-resultados {
  text-align: center;
  padding: 60px 20px;
  color: var(--cinza-texto);
}

.sem-resultados__icone {
  font-size: 3rem;
  margin-bottom: 16px;
}

.sem-resultados__titulo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--preto-titulo);
  margin-bottom: 8px;
}

.sem-resultados__texto {
  font-size: 0.9rem;
}


/* ════════════════════════════════════════════════════════════
   SEÇÃO MÍDIAS SOCIAIS (Embeds)
   ════════════════════════════════════════════════════════════ */
.midias-sociais {
  padding: 100px 0;
  background: var(--cinza-fundo);
}

.midias__abas {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.midia-aba {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1.5px solid var(--cinza-borda);
  background: var(--branco);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cinza-texto);
  cursor: pointer;
  transition: var(--transicao);
}

.midia-aba:hover {
  border-color: var(--azul);
  color: var(--azul);
}

.midia-aba.ativa {
  background: var(--azul);
  border-color: var(--azul);
  color: var(--branco);
}

.midia-aba.ativa--youtube  { background: #FF0000; border-color: #FF0000; }
.midia-aba.ativa--instagram { background: linear-gradient(135deg,#E1306C,#833AB4); border-color: #E1306C; }
.midia-aba.ativa--facebook  { background: #1877F2; border-color: #1877F2; }

.midias__painel {
  display: none;
}

.midias__painel.ativo {
  display: block;
}

/* YouTube */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-embed-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra-md);
  background: #000;
  aspect-ratio: 16/9;
}

.video-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-canal-cta {
  text-align: center;
  margin-top: 36px;
}

.video-canal-placeholder {
  text-align: center;
  padding: 48px;
  background: var(--branco);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--cinza-borda);
}

.video-canal-placeholder__icone {
  font-size: 3rem;
  margin-bottom: 16px;
}

.video-canal-placeholder__titulo {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.video-canal-placeholder__texto {
  color: var(--cinza-texto);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* Instagram */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.instagram-post {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra-sm);
}

.instagram-post iframe {
  width: 100% !important;
  min-width: unset !important;
}

.instagram-cta {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 2px dashed var(--cinza-borda);
}

.instagram-cta__icone {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* Facebook */
.facebook-embed-wrapper {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.facebook-embed-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra-md);
}


/* ════════════════════════════════════════════════════════════
   SEO — BREADCRUMB MELHORADO
   ════════════════════════════════════════════════════════════ */
.breadcrumb-novo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  list-style: none;
}

.breadcrumb-novo li a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.breadcrumb-novo li a:hover { color: var(--laranja); }

.breadcrumb-novo li::after {
  content: '/';
  margin-left: 6px;
  color: rgba(255,255,255,0.25);
}

.breadcrumb-novo li:last-child::after { display: none; }
.breadcrumb-novo li:last-child { color: rgba(255,255,255,0.75); }


/* ════════════════════════════════════════════════════════════
   ADMIN — GESTÃO DE ESTOQUE E MÍDIAS
   ════════════════════════════════════════════════════════════ */
.estoque-controle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.estoque-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1.5px solid var(--cinza-borda);
  background: var(--branco);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicao);
  font-family: inherit;
}

.estoque-btn:hover {
  background: var(--azul);
  color: var(--branco);
  border-color: var(--azul);
}

.estoque-numero {
  width: 52px;
  text-align: center;
  padding: 6px 8px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  outline: none;
}

.estoque-numero:focus {
  border-color: var(--azul);
}

/* Tag de vídeo no admin */
.video-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cinza-fundo);
  border: 1px solid var(--cinza-borda);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.82rem;
  margin: 4px;
}

.video-tag__remover {
  cursor: pointer;
  color: var(--cinza-texto);
  transition: color 0.2s;
  font-size: 1rem;
  line-height: 1;
}

.video-tag__remover:hover { color: var(--vermelho); }

.videos-tags-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
  min-height: 36px;
}

.instagram-tags-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
  min-height: 36px;
}

/* ════════════════════════════════════════════════════════════
   CONSULTORIA PRIME
   ════════════════════════════════════════════════════════════ */
.consultoria-prime {
  padding: 56px 0 48px;
  background: var(--branco);
}
.consultoria-prime .secao-etiqueta { color: var(--laranja); }
.consultoria-prime .secao-titulo   { color: var(--preto-titulo); }
.consultoria-prime .secao-subtitulo { color: var(--cinza-texto); }
.consultoria-prime .secao-cabecalho { margin-bottom: 32px; }

/* 3 compact cards */
.cp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.cp-card {
  background: var(--cinza-fundo);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cinza-borda);
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(17,65,86,0.12);
  border-color: var(--azul);
}

.cp-card__foto {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.cp-card__overlay { display: none; }

.cp-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cp-card__icone {
  font-size: 1.5rem;
  line-height: 1;
}

.cp-card__titulo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--preto-titulo);
  margin: 0;
  line-height: 1.2;
}

.cp-card__desc {
  font-size: 0.82rem;
  color: var(--cinza-texto);
  margin: 0;
  line-height: 1.5;
}

.cp-card__btn {
  display: inline-block;
  margin-top: auto;
  padding: 8px 16px;
  background: var(--azul);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s ease;
  align-self: flex-start;
}
.cp-card__btn:hover {
  background: var(--azul-medio);
}

/* 3 mini highlight cards */
.cp-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cp-mini {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  transition: background 0.2s ease;
}
.cp-mini:hover {
  background: rgba(255,255,255,0.09);
}

.cp-mini__icone {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cp-mini strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.cp-mini p {
  color: rgba(255,255,255,0.6);
  font-size: 0.83rem;
  margin: 0;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .cp-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cp-card__foto {
    height: 130px;
  }
  .cp-mini-grid {
    grid-template-columns: 1fr;
  }
  .consultoria-prime {
    padding: 50px 0 40px;
  }
}


/* ════════════════════════════════════════════════════════════
   SERVIÇOS — CARDS COM ACORDEÃO (servicos.html)
   ════════════════════════════════════════════════════════════ */

.srv-cards-secao {
  padding: 80px 0;
  background: #fff;
}

.srv-card {
  border: 1.5px solid var(--cinza-borda);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.srv-card:hover,
.srv-card.aberto {
  box-shadow: 0 8px 32px rgba(17, 65, 86, 0.1);
  border-color: var(--azul);
}

/* Topo do card: imagem + resumo lado a lado */
.srv-card__topo {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 200px;
}

.srv-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Variante com silhueta em vez de foto */
.srv-card__img--sil {
  background-color: rgba(17, 65, 86, 0.07);
  background-image: var(--sil);
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.srv-card__resumo {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.srv-card__titulo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--preto-titulo);
  line-height: 1.25;
  margin: 0;
}

.srv-card__intro {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.6;
  margin: 0;
}

/* Botão Saiba Mais */
.srv-card__saiba-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 9px 20px;
  background: var(--azul);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: background 0.18s;
}
.srv-card__saiba-btn:hover { background: #0d3447; }

.srv-card__seta {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.srv-card.aberto .srv-card__seta--up { transform: rotate(0deg); }

/* Detalhe expandível */
.srv-card__detalhe {
  display: none;
  padding: 0 36px 32px;
  border-top: 1px solid var(--cinza-borda);
  animation: abrirDetalhe 0.25s ease;
}
.srv-card.aberto .srv-card__detalhe {
  display: block;
}
.srv-card__detalhe p {
  color: var(--cinza-texto);
  line-height: 1.7;
  margin-bottom: 16px;
}

@keyframes abrirDetalhe {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tabela de preços */
.srv-precos {
  background: var(--cinza-fundo);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.srv-precos__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cinza-texto);
  margin-bottom: 14px;
}
.srv-preco-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.88rem;
}
.srv-preco-item:last-child { margin-bottom: 0; }
.srv-preco-item span:first-child { font-weight: 600; }
.srv-preco-item span:last-child  { font-weight: 700; }
.srv-preco-item--azul    { border-left: 3px solid var(--azul); }
.srv-preco-item--laranja { border-left: 3px solid var(--laranja); }
.srv-preco-item--verde   { border-left: 3px solid var(--verde); }
.srv-preco-item--azul    span:last-child { color: var(--azul); }
.srv-preco-item--laranja span:last-child { color: var(--laranja); }
.srv-preco-item--verde   span:last-child { color: var(--verde); }

/* Mobile */
@media (max-width: 768px) {
  .srv-cards-secao { padding: 48px 0; }

  .srv-card__topo {
    grid-template-columns: 1fr;
  }

  .srv-card__img {
    height: 200px;
  }

  .srv-card__resumo {
    padding: 24px 20px;
  }

  .srv-card__titulo { font-size: 1.05rem; }

  .srv-card__detalhe {
    padding: 0 20px 24px;
  }

  .srv-preco-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ════════════════════════════════════════════════════════════
   SERVIÇOS COM ABAS
   ════════════════════════════════════════════════════════════ */
.servicos-abas {
  padding: 80px 0 72px;
  background: var(--verde-fundo);
  position: relative;
  overflow: hidden;
}

.servicos-abas .container { position: relative; z-index: 1; }

.servicos-abas .secao-etiqueta {
  background: rgba(17,65,86,0.1);
  color: var(--azul);
}
.servicos-abas .secao-titulo   { color: var(--preto-titulo); }
.servicos-abas .secao-cabecalho { margin-bottom: 36px; }

/* Tab bar — pill style sobre fundo verde */
.sa-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.65);
  border-radius: 12px;
  padding: 5px;
  width: fit-content;
  border: 1px solid rgba(17,65,86,0.12);
  backdrop-filter: blur(6px);
}

.sa-tab {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  background: none;
  color: var(--cinza-texto);
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}

.sa-tab:hover {
  color: var(--azul);
  background: rgba(17,65,86,0.06);
}

.sa-tab.ativo {
  background: var(--azul);
  color: #fff;
  box-shadow: 0 2px 10px rgba(17,65,86,0.22);
}

/* Panels */
.sa-paineis { position: relative; }

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

.sa-painel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(17,65,86,0.12);
  animation: saFadeIn 0.25s ease;
}

.sa-painel.ativo { display: grid; }

.sa-painel__img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

.sa-painel__info {
  padding: 44px 44px 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  background: #fff;
}

.sa-painel__info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--preto-titulo);
  margin: 0;
  line-height: 1.25;
}

.sa-painel__info p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.7;
  margin: 0;
}

.sa-painel__info .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .servicos-abas { padding: 48px 0 40px; }

  /* Grade 2×2 — sem scroll horizontal */
  .sa-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    backdrop-filter: none;
    margin-bottom: 20px;
  }

  .sa-tab {
    font-size: 0.8rem;
    padding: 12px 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    border-radius: 10px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(17,65,86,0.12);
  }

  .sa-tab.ativo {
    background: var(--azul);
    color: #fff;
    border-color: var(--azul);
  }

  /* Painel mobile — coluna única */
  .sa-painel.ativo {
    grid-template-columns: 1fr;
    touch-action: pan-y;
  }

  .sa-painel__img {
    height: 200px;
    min-height: unset;
    max-height: unset;
    order: -1;
  }

  .sa-painel__info {
    padding: 22px 20px 26px;
    gap: 12px;
  }

  .sa-painel__info h3 { font-size: 1.1rem; }
  .sa-painel__info .btn { width: 100%; justify-content: center; }

  /* Indicador de navegação */
  .sa-nav-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
  }
}

@media (min-width: 769px) {
  .sa-nav-mobile { display: none; }
}

/* Botões prev/next mobile */
.sa-nav-mobile__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--azul);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(17,65,86,0.15);
  border-radius: 8px;
  padding: 9px 14px;
  cursor: pointer;
}

.sa-nav-mobile__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.sa-nav-mobile__counter {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--azul);
}


/* ════════════════════════════════════════════════════════════
   SEÇÃO EQUIPAMENTOS (home — compact)
   ════════════════════════════════════════════════════════════ */
.equipamentos-secao {
  background: var(--azul-escuro);
}

.equipamentos-secao .secao-etiqueta--laranja {
  background: rgba(243,115,59,0.18);
  color: var(--laranja);
}

.equipamentos-secao h2 {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}


/* ════════════════════════════════════════════════════════════
   VÍDEOS HOME
   ════════════════════════════════════════════════════════════ */
.videos-secao-home {
  padding: 80px 0;
  background: var(--verde-fundo);
}

.videos-secao-home .secao-etiqueta {
  background: rgba(17,65,86,0.08);
  color: var(--azul);
}
.videos-secao-home .secao-titulo   { color: var(--preto-titulo); }
.videos-secao-home .secao-cabecalho { margin-bottom: 32px; }

.videos-secao-home .yt-grid {
  max-width: 860px;
  margin: 0 auto;
}

.videos-secao-home .yt-thumb {
  box-shadow: 0 4px 20px rgba(17,65,86,0.12);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .videos-secao-home { padding: 56px 0; }
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVO — EXTRAS
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .produtos-layout         { grid-template-columns: 1fr; }
  .filtros-sidebar         { position: static; }
  .videos-grid             { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid          { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .videos-grid             { grid-template-columns: 1fr; }
  .instagram-grid          { grid-template-columns: 1fr; }
  .facebook-embed-wrapper  { justify-content: center; }
  .resultados-topo         { flex-direction: column; align-items: flex-start; }
}


/* ════════════════════════════════════════════════════════════
   MODAL DE EQUIPAMENTO
   ════════════════════════════════════════════════════════════ */
.eq-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,20,30,0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInModal 0.2s ease;
}

.eq-modal__box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: slideUpModal 0.28s ease;
}

@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.eq-modal__fechar {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.eq-modal__fechar:hover { background: rgba(0,0,0,0.7); }

/* Imagem */
.eq-modal__img-wrap {
  position: relative;
  min-height: 320px;
  background: var(--cinza-fundo);
  flex-shrink: 0;
}

.eq-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.15s ease;
  min-height: 320px;
}

/* Logo no topo da imagem */
.eq-modal__logo-topo {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
}

.eq-modal__logo-nome {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.eq-modal__logo-prime {
  display: inline-block;
  background: var(--laranja);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 2px 6px;
  border-radius: 3px;
  align-self: flex-start;
  margin-top: 2px;
}

.eq-modal__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cinza-fundo);
}

.eq-modal__img-placeholder span {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cinza-texto);
}

/* Info */
.eq-modal__info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eq-modal__cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--laranja);
}

.eq-modal__nome {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: var(--preto-titulo);
  line-height: 1.2;
  margin: 0;
}

.eq-modal__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  align-self: flex-start;
}
.eq-modal__status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.eq-modal__status--ok {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}
.eq-modal__status--ok::before { background: #22c55e; }
.eq-modal__status--consultar {
  background: rgba(100,116,139,0.1);
  color: #64748b;
}
.eq-modal__status--consultar::before { background: #94a3b8; }

.eq-modal__desc {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.eq-modal__acoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

/* Mobile */
@media (max-width: 640px) {
  .eq-modal { padding: 12px; }

  .eq-modal__box {
    grid-template-columns: 1fr;
    max-height: 95vh;
    border-radius: 16px;
    overflow-x: hidden;
  }

  .eq-modal__img-wrap { min-height: 220px; }
  .eq-modal__img      { min-height: 220px; }

  .eq-modal__galeria  { min-width: 0; width: 100%; }

  .eq-modal__info {
    padding: 24px 22px 28px;
    gap: 12px;
    min-width: 0;
  }

  .eq-modal__nome {
    font-size: 1.15rem;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
}

/* Hero — 2 silhuetas: só no mobile */
.hero-maquina-img { display: none; }

@media (max-width: 768px) {
  .hero-maquina-img {
    display: block;
    margin-top: 28px;
  }
  .hero-2sil {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(17, 65, 86, 0.06);
  }
  .hero-2sil__item {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.55;
  }
}

/* Galeria — wrapper que inclui foto principal + thumbs */
.eq-modal__galeria {
  display: flex;
  flex-direction: column;
}

/* Botões nav da galeria */
.eq-gal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.42);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: background 0.15s;
}
.eq-gal-nav:hover { background: rgba(0,0,0,0.72); }
.eq-gal-nav--prev { left: 10px; }
.eq-gal-nav--next { right: 10px; }

/* Faixa de miniaturas */
.eq-modal__thumbs {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: #efefef;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.eq-modal__thumbs::-webkit-scrollbar { display: none; }

.eq-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 46px;
  border-radius: 6px;
  overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer;
  padding: 0;
  background: #ccc;
  transition: border-color 0.15s;
}
.eq-thumb.ativo { border-color: var(--azul); }
.eq-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Specs grid — ano, horímetro, localização etc */
.eq-modal__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}
.eq-spec {
  background: var(--cinza-fundo, #f4f4f4);
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.eq-spec__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cinza-texto);
}
.eq-spec__valor {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--preto-titulo);
}

@media (max-width: 640px) {
  .eq-modal__specs { grid-template-columns: 1fr 1fr; }
  .eq-thumb { width: 50px; height: 38px; }
  .eq-gal-nav { width: 32px; height: 32px; font-size: 1.2rem; }
}

/* ════════════════════════════════════════════════════════════
   SERVIÇOS — LISTA VERTICAL (index.html)
   ════════════════════════════════════════════════════════════ */

.srv-sel-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--cinza-borda);
}

.srv-sel-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 22px 28px;
  text-decoration: none;
  color: var(--preto-titulo);
  border-bottom: 1px solid var(--cinza-borda);
  overflow: hidden;
  transition: background 0.18s ease, padding-left 0.18s ease;
}

.srv-sel-card:last-child {
  border-bottom: none;
}

.srv-sel-card:hover {
  background: #f7fbfc;
  padding-left: 34px;
}

/* Silhueta decorativa */
.srv-sel-card__sil {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  height: 70px;
  width: auto;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

/* Número */
.srv-sel-card__num {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--azul);
  opacity: 0.18;
  line-height: 1;
  width: 36px;
  text-align: center;
}

.srv-sel-card__body {
  flex: 1;
  min-width: 0;
}

.srv-sel-card__titulo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--preto-titulo);
  margin-bottom: 4px;
  line-height: 1.3;
}

.srv-sel-card__desc {
  font-size: 0.83rem;
  color: var(--cinza-texto);
  line-height: 1.5;
}

.srv-sel-card__cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--azul);
  white-space: nowrap;
}

/* Item destaque — Laudo */
.srv-sel-card--destaque {
  background: var(--azul);
  border-bottom-color: transparent;
}

.srv-sel-card--destaque:hover {
  background: #0d3447;
  padding-left: 34px;
}

.srv-sel-card--destaque .srv-sel-card__num {
  color: #fff;
  opacity: 0.25;
}

.srv-sel-card--destaque .srv-sel-card__titulo {
  color: #fff;
}

.srv-sel-card--destaque .srv-sel-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.srv-sel-card--destaque .srv-sel-card__cta {
  color: var(--laranja);
}

.srv-sel-card--destaque .srv-sel-card__sil {
  opacity: 0.1;
  filter: brightness(0) invert(1);
}

/* Mobile */
@media (max-width: 520px) {
  .srv-sel-card {
    padding: 18px 20px;
    gap: 14px;
  }

  .srv-sel-card:hover {
    padding-left: 26px;
  }

  .srv-sel-card--destaque:hover {
    padding-left: 26px;
  }

  .srv-sel-card__num {
    font-size: 1.2rem;
    width: 28px;
  }

  .srv-sel-card__sil {
    right: 60px;
    height: 52px;
  }

  .srv-sel-card__cta span,
  .srv-sel-card__cta {
    font-size: 0;
  }

  .srv-sel-card__cta svg {
    width: 18px;
    height: 18px;
  }
}

/* ════════════════════════════════════════════════════════════
   LAUDO — grids responsivos
   ════════════════════════════════════════════════════════════ */

.laudo-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.inspecao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .laudo-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .laudo-intro-grid img {
    order: -1;
    max-height: 280px;
    object-fit: cover;
  }
  .inspecao-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .inspecao-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   HERO-WM — silhuetas de fundo
   - Desktop (>1024px): grid 3×2, opacity baixa
   - Tablet (769–1024px): ocultar — evita distorção
   - Mobile (≤768px): já oculto pelo mobile CSS geral
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-wm {
    display: none;   /* remove silhuetas no tablet */
  }
}

@media (min-width: 1025px) {
  .hero-wm__item {
    background-size: 70%;
    background-position: center center;
  }
}

/* ════════════════════════════════════════════════════════════
   HERO MOBILE — 2 silhuetas simétricas
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-2sil {
    height: 180px;
  }
  .hero-2sil__item {
    background-size: 80%;
    background-position: center center;
    opacity: 0.65;
  }
}

/* ════════════════════════════════════════════════════════════
   HERO TÍTULO — alinhamento (nunca justify em site)
   ════════════════════════════════════════════════════════════ */

.hero-abertura__titulo {
  text-align: center;
}

/* Versão do subtítulo — desktop mostra completo, mobile mostra curto */
.hero-abertura__subtitulo--mobile  { display: none; }
.hero-abertura__subtitulo--desktop { display: block; }

@media (max-width: 768px) {
  .hero-abertura__subtitulo--desktop { display: none; }
  .hero-abertura__subtitulo--mobile  { display: block; }

  /* Alinha tudo à esquerda no mobile — consistente */
  .hero-abertura__conteudo {
    text-align: left;
  }
  .hero-abertura__titulo {
    font-size: 1.3rem;
    line-height: 1.25;
  }
  .hero-abertura__subtitulo {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.88rem;
    line-height: 1.65;
  }
  .hero-abertura__botoes {
    justify-content: flex-start;
  }
}

/* ════════════════════════════════════════════════════════════
   LAUDO — silhueta grande no lugar da foto
   ════════════════════════════════════════════════════════════ */
.laudo-sil-bloco {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: rgba(17,65,86,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.laudo-sil-bloco__sil {
  width: 100%; height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 82%;
  opacity: 0.45;
  filter: grayscale(100%);
}

/* ════════════════════════════════════════════════════════════
   SOBRE — 3 silhuetas em triângulo centralizadas
   ════════════════════════════════════════════════════════════ */
.sobre-3sil-tri {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(17,65,86,0.06);
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sobre-3sil-tri__topo {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 16px 20%;
}
.sobre-3sil-tri__base {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 8% 16px;
}
.sobre-3sil-tri__item {
  flex: 1;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 85%;
  opacity: 0.55;
}
.sobre-3sil-tri__topo .sobre-3sil-tri__item {
  background-size: 78%;
  background-position: center center;
}

/* ════════════════════════════════════════════════════════════
   HERO WM — silhuetas de fundo menores
   ════════════════════════════════════════════════════════════ */
.hero-abertura .hero-wm__item,
.servicos-abas .hero-wm__item {
  background-size: 52% !important;
  opacity: 0.08 !important;
}

/* ════════════════════════════════════════════════════════════
   SERVIÇOS HOME — card compacto (sem descrição)
   ════════════════════════════════════════════════════════════ */
.srv-sel-card {
  padding: 18px 28px;
  min-height: unset;
}
.srv-sel-card__desc { display: none; }
.srv-sel-card__titulo { font-size: 0.95rem; }

/* ════════════════════════════════════════════════════════════
   MARKETPLACE — cards de equipamento
   ════════════════════════════════════════════════════════════ */

/* Imagem maior e uniforme */
.mkt-card .produto-card__imagem,
.mkt-card__img {
  height: 210px !important;
  position: relative;
  overflow: hidden;
}

/* Badges sobre a imagem */
.mkt-badges-topo {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
}

.mkt-badge {
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.04em;
}
.mkt-badge--verde    { background: rgba(34,197,94,0.9);  color: #fff; }
.mkt-badge--laranja  { background: var(--laranja);        color: #fff; }
.mkt-badge--azul     { background: var(--azul);           color: #fff; }
.mkt-badge--cinza    { background: rgba(100,116,139,0.85);color: #fff; }
.mkt-badge--destaque { background: var(--laranja);        color: #fff; }

/* Corpo do card */
.mkt-card__corpo { padding: 16px 18px 18px; }

/* Specs no card */
.mkt-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 10px 0 12px;
}
.mkt-spec {
  background: #f4f7f9;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 0.72rem;
}
.mkt-spec__label {
  color: var(--cinza-texto);
  display: block;
  margin-bottom: 1px;
  font-weight: 600;
}
.mkt-spec strong { color: var(--preto-titulo); font-weight: 700; }

/* Preço */
.mkt-preco {
  font-size: 1.25rem; font-weight: 900; color: var(--azul);
  margin: 8px 0 12px; line-height: 1;
}

/* Rodapé do card */
.mkt-card__rodape {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid var(--cinza-borda);
  padding-top: 10px;
}
.mkt-ver-btn {
  font-size: 0.8rem; font-weight: 700;
  color: var(--azul); white-space: nowrap;
  transition: color 0.15s;
}
.mkt-card:hover .mkt-ver-btn { color: var(--laranja); }

/* nome um pouco menor para caber melhor */
.mkt-card .produto-card__nome { font-size: 0.95rem; margin-bottom: 0; }
.mkt-card .produto-card__categoria { margin-bottom: 4px; }

/* ════════════════════════════════════════════════════════════
   FILTROS EXTRAS — inputs de range
   ════════════════════════════════════════════════════════════ */
.filtro-range-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.filtro-range-input {
  width: 100%; padding: 9px 10px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: 8px; font-size: 0.85rem;
  font-family: inherit; background: #fff;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}
.filtro-range-input::-webkit-outer-spin-button,
.filtro-range-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.filtro-range-input:focus {
  outline: none; border-color: var(--azul);
}
.filtro-grupo { margin-bottom: 18px; }

/* CheckMaq: selo pequeno em overlay, para aparecer em fotos antigas sem duplicar no upload. */
.mkt-seal-watermark,
.pdet-seal-watermark,
.eq-modal-seal-watermark {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 46px;
  height: 46px;
  object-fit: contain;
  opacity: 0.82;
  pointer-events: none;
  z-index: 2;
}

.pdet-seal-watermark {
  width: 68px;
  height: 68px;
  top: 12px;
  right: 12px;
}

.eq-modal-seal-watermark {
  width: 58px;
  height: 58px;
  top: 14px;
  right: 14px;
}


