.floating-cta {
  position: fixed;
  inset-inline-end: 1.1rem;
  bottom: 1.25rem;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}

.floating-cta__btn {
  pointer-events: auto;
  position: relative;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(6, 23, 32, 0.22);
  transform: translateY(0);
  animation: floating-cta-enter 0.55s ease both, floating-cta-bob 3.2s ease-in-out 0.55s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-cta__btn:nth-child(2) {
  animation-delay: 0.12s, 0.9s;
}

.floating-cta__btn:nth-child(3) {
  animation-delay: 0.24s, 1.25s;
}

.floating-cta__btn:hover,
.floating-cta__btn:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 34px rgba(6, 23, 32, 0.28);
  filter: brightness(1.05);
  outline: none;
  color: inherit;
  text-decoration: none;
}

.floating-cta__btn--whatsapp {
  background: #073933;
  color: #fff;
}

.floating-cta__btn--whatsapp:hover,
.floating-cta__btn--whatsapp:focus-visible {
  background: #0a4a42;
  color: #fff;
}

.floating-cta__btn--trial {
  background: linear-gradient(135deg, #F0B429, #C5923F);
  color: #1A1205;
}

.floating-cta__btn--review {
  background: #f8f4e9;
  color: #0a302e;
  border: 1px solid rgba(10, 48, 46, 0.12);
}

.floating-cta__btn--review:hover,
.floating-cta__btn--review:focus-visible {
  background: #fff;
  color: #0a302e;
}

.floating-cta__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.floating-cta__label {
  white-space: nowrap;
}

.floating-cta__pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(7, 57, 51, 0.55);
  animation: floating-cta-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

.floating-cta__pulse--gold {
  border-color: rgba(197, 146, 63, 0.55);
  animation-delay: 0.4s;
}

.floating-cta__pulse--review {
  border-color: rgba(10, 48, 46, 0.35);
  animation-delay: 0.8s;
}

@keyframes floating-cta-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floating-cta-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes floating-cta-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (max-width: 575.98px) {
  .floating-cta {
    inset-inline-end: 0.85rem;
    bottom: 0.95rem;
    gap: 0.65rem;
  }

  .floating-cta__btn {
    min-height: 2.85rem;
    padding: 0.65rem 0.85rem 0.65rem 0.75rem;
    font-size: 0.82rem;
  }

  .floating-cta__label {
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-cta__btn,
  .floating-cta__pulse {
    animation: none !important;
  }
}
