/**
 * FAB compra/lead (bottom-left) + mini video pill (top-right).
 * WhatsApp stays bottom-right — no collision rules here.
 */
.acmp-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f74604;
  color: #fff;
  font-family: "Satoshi", "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(247, 70, 4, 0.45);
  transition: transform 0.2s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  max-width: min(320px, calc(100vw - 32px));
  line-height: 1.25;
}
.acmp-fab.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.acmp-fab:hover {
  transform: translateY(-3px);
}
.acmp-fab svg {
  flex-shrink: 0;
}

.acmp-float-video {
  position: fixed;
  right: 20px;
  z-index: 998;
  top: calc(44px + 86px + 12px);
  width: min(188px, 40vw);
  text-decoration: none;
  color: inherit;
  transform: translate(120%, 0);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.acmp-float-video.is-visible {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}
.acmp-float-video.is-visible:hover {
  transform: translate(0, -3px);
}
.acmp-float-video.is-dismissed {
  display: none !important;
}
.acmp-float-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 14px 36px rgba(34, 43, 73, 0.24);
  background: #222b49;
}
.acmp-float-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}
.acmp-float-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(34, 43, 73, 0.08), rgba(34, 43, 73, 0.45));
  pointer-events: none;
}
.acmp-float-video-play svg {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
}
.acmp-float-video-label {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  margin: 0;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  font-family: "Satoshi", "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f74604;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(34, 43, 73, 0.14);
}

@media (max-width: 900px) {
  .acmp-float-video {
    right: 14px;
    width: min(156px, 38vw);
    top: calc(72px + 68px + 8px);
  }
  .acmp-float-video-play svg {
    width: 36px;
    height: 36px;
  }
  .acmp-float-video-label {
    top: 6px;
    left: 6px;
    font-size: 9.5px;
    padding: 4px 7px;
  }
}

@media (max-width: 480px) {
  .acmp-fab {
    font-size: 13px;
    padding: 12px 16px;
    bottom: 20px;
    left: 16px;
    max-width: calc(100vw - 88px);
  }
}
