/* ===============================
   CTA AGENDAR – OVERLAY FIXED
================================ */

.cta-agendar-fixed {
  position: fixed;
  top: 35px;          /* altura respecto al viewport */
  right: 160px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 20px;

  background-color: #0FA958;
  color: #ffffff !important;

  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;

  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;

  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  transition: all .25s ease;
}

.cta-agendar-fixed:hover {
  background-color: #0c8e4a;
  transform: translateY(-2px);
}

/* Mobile: ocultar o ajustar */
@media (max-width: 992px) {
  .cta-agendar-fixed {
    display: none;
  }
}
