/* fundo do hero — 3 exports, um por faixa:
   mob (<1366) | 1366–1919 | ≥1920
   Clip do bg fica em .hero-bg-wrap. NÃO usar overflow:hidden no body/
   .hero-zone: isso quebra backdrop-filter dos painéis foscos. */
html {
  scroll-behavior: smooth !important;
}

.cliente26_hero-zone {
  overflow: clip !important;
}

/* Tailwind não gera corretamente a utility negativa quando há prefixo. */
.-cliente26_translate-x-1\/2 {
  transform: translateX(-50%) !important;
}

.cliente26_hero-bg img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

@media (min-width: 1366px) {
  .cliente26_hero-bg {
    height: 1536px !important;
  }

  .cliente26_hero-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
  }
}

/* Hero/header: no Figma o Subtract começa em y=612 */
.cliente26_hero-header {
  min-height: 612px !important;
}

@media (max-width: 1365px) {
  .cliente26_hero-header {
    min-height: min(612px, 70vh) !important;
  }
}

@media (max-width: 767px) {
  /* mob: altura pelo conteúdo — scroll fica no chanfro, não no fluxo do hero */
  .cliente26_hero-header {
    min-height: 0 !important;
  }
}

/* H1: no mob, 3 linhas fixas (Figma); no desk, uma frase contínua */
.cliente26_hero-line {
  display: inline !important;
}

.cliente26_hero-line + .cliente26_hero-line::before {
  content: " " !important;
}

@media (max-width: 767px) {
  .cliente26_hero-line {
    display: block !important;
  }

  .cliente26_hero-line + .cliente26_hero-line::before {
    content: none !important;
  }
}

/* abas: bordas divisórias entre itens */
.cliente26_tabs {
  gap: 0 !important;
  padding-top: 0.5rem !important;
  scrollbar-width: none !important;
}

.cliente26_tabs::-webkit-scrollbar {
  display: none !important;
}

.cliente26_tabs .cliente26_tab-btn {
  position: relative !important;
  border-radius: 0.5rem !important;
}

.cliente26_tabs .cliente26_tab-btn:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 25% !important;
  bottom: 25% !important;
  width: 1px !important;
  background: #d2d5db !important;
  pointer-events: none !important;
}

/* constelação de logos: ocupa toda altura do hero — bolhas de baixo
   vazam sobre o chanfro/cap (frost já aplicado ali, ver .cliente26_hero-cap-row) */
.cliente26_logo-constellation-inner {
  position: absolute !important;
  inset: 0 !important;
}

/* Frame 2 do Figma: branco 70% + blur 40. */
.cliente26_frost-panel {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(40px) !important;
  -webkit-backdrop-filter: blur(40px) !important;
}

/* os 3 itens do cliente26_hero-cap-frost (cliente26_cap-fill, cliente26_hero-cap, cliente26_cap-fill): blur
   individual mais forte, sem opacity no wrapper. */
.cliente26_cap-fill,
.cliente26_hero-cap {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(100px) !important;
  -webkit-backdrop-filter: blur(100px) !important;
  opacity: 0.9 !important;
}

.cliente26_hero-cap-row {
  position: relative !important;
  overflow: visible !important;
}

.cliente26_hero-cap-frost {
  width: 100% !important;
}

.cliente26_cap-fill {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  height: 80px !important;
}

.cliente26_hero-cap {
  flex: 0 0 auto !important;
  width: 1366px !important;
  max-width: 100% !important;
  height: 80px !important;
  -webkit-mask-image: url("../assets/icons/subtract-cap.svg") !important;
  mask-image: url("../assets/icons/subtract-cap.svg") !important;
  -webkit-mask-size: 100% 100% !important;
  mask-size: 100% 100% !important;
  -webkit-mask-position: center top !important;
  mask-position: center top !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
}

/* Mob (≤767): chanfro full-bleed com mask 390×56; laterais somem */
@media (max-width: 767px) {
  .cliente26_cap-fill {
    display: none !important;
  }

  .cliente26_hero-cap {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
    height: 56px !important;
    -webkit-mask-image: url("../assets/icons/subtract-cap-mob.svg") !important;
    mask-image: url("../assets/icons/subtract-cap-mob.svg") !important;
  }
}

.cliente26_sindicato-band {
  /* flat e opaco: no Figma a seção de Sindicatos não tem degradê nenhum */
  background: #e6e8ea !important;
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none !important;
}

.cliente26_sindicato-band::-webkit-scrollbar {
  display: none !important;
}

.cliente26_sindicato-band .cliente26_logo-cell {
  background: transparent !important;
  border-bottom: none !important;
  min-height: 130px !important;
  flex: 0 0 25% !important;
  scroll-snap-align: start !important;
}

@media (max-width: 639px) {
  .cliente26_sindicato-band .cliente26_logo-cell {
    flex-basis: 50% !important;
  }
}

.cliente26_logo-bubble {
  position: absolute !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fff !important;
  border-radius: 9999px !important;
  box-shadow: 0 10px 30px rgba(27, 36, 64, 0.12) !important;
  padding: 8px !important;
  overflow: hidden !important;
}

.cliente26_logo-bubble img {
  /* mais respiro interno, aproximando o acabamento do frame do Figma */
  width: 64% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
  filter: grayscale(0.2) !important;
}

.cliente26_logo-float {
  animation: cliente26_logo-float var(--float-dur, 7s) ease-in-out infinite !important;
  animation-delay: var(--float-delay, 0s) !important;
  will-change: transform !important;
}

@keyframes cliente26_logo-float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(6px, -14px); }
}

@media (prefers-reduced-motion: reduce) {
  .cliente26_logo-float {
    animation: none !important;
  }
}

/* Frame 25 — centrado no vale do chanfro (desk + mob).
   Sem translate(-50%) na posição: Safari quebra com calc na animação.
   Fora do wrapper com backdrop-filter (senão some no iOS). */
.cliente26_scroll-down {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  /* sobe pro vale do Subtract — não cruzar o limiar da seção abaixo */
  top: 0 !important;
  bottom: auto !important;
  z-index: 40 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 62px !important;
  margin: -48px auto 0 !important;
  opacity: 0.75 !important;
  transition: opacity 0.2s ease !important;
  animation: scroll-nudge 1.8s ease-in-out infinite !important;
  -webkit-tap-highlight-color: transparent !important;
}

.cliente26_scroll-down img,
.cliente26_scroll-down svg {
  display: block !important;
  width: 38px !important;
  height: 62px !important;
  pointer-events: none !important;
}

@media (max-width: 767px) {
  .cliente26_scroll-down {
    width: 32px !important;
    height: 52px !important;
    margin-top: -40px !important;
    opacity: 1 !important;
  }

  .cliente26_scroll-down img,
  .cliente26_scroll-down svg {
    width: 32px !important;
    height: 52px !important;
  }
}

.cliente26_scroll-down:hover {
  opacity: 1 !important;
}

@keyframes scroll-nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.cliente26_logo-cell img {
  /* logos exportados com fundo branco: multiply remove o fundo em cima do card claro */
  mix-blend-mode: multiply !important;
}
