/* ===========================================
  FLOATING CTA - Landing Principal
=========================================== */

.floating-cta {
  position: fixed;
  bottom: 5.5rem;
  left: 2rem;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: var(--p-verde);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(24, 180, 176, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.floating-cta:hover {
  background: #14a8a4;
  color: #fff;
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: kreep 0.7s ease 2s infinite alternate;
}

.floating-cta.visible:hover {
  animation: none;
  transform: translateY(-2px);
}

@keyframes kreep {
  0% {
    transform: scale(1.1, 0.9);
  }

  50% {
    transform: scale(0.9, 1.1) translateY(-0.5rem);
  }

  70% {
    transform: scale(1);
  }
}

/* -------------------------------------------
  Responsive
------------------------------------------- */
@media (max-width: 576px) {
  .floating-cta {
    bottom: 4.5rem;
    left: 1.2rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
}