.pro-mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 99990;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.pro-mobile-cta a {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  border-radius: 17px;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .2px;
  text-decoration: none;
  line-height: 1;
  isolation: isolate;
  box-shadow: 0 14px 30px rgba(7,31,58,.22);
}

.pro-mobile-cta a:before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  opacity: .9;
}

.pro-mobile-cta-call:before {
  background: linear-gradient(135deg,#0F4CFF,#0f4c81);
}

.pro-mobile-cta-whatsapp:before {
  background: linear-gradient(135deg,#18b85a,#0a9f4a);
}

.pro-mobile-cta-icon {
  display: none;
}

.pro-mobile-cta-label {
  white-space: nowrap;
  text-shadow: 0 1px 1px rgba(0,0,0,.12);
}

.pro-mobile-cta a:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(15,76,255,.35);
  animation: proCtaPulse 2.2s ease-out infinite;
}

.pro-mobile-cta-whatsapp:after {
  box-shadow: 0 0 0 0 rgba(24,184,90,.35);
  animation-delay: .6s;
}

@keyframes proCtaPulse {
  0% { box-shadow: 0 0 0 0 rgba(15,76,255,.34); }
  70% { box-shadow: 0 0 0 12px rgba(15,76,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,76,255,0); }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 84px;
  }

  .pro-mobile-cta {
    display: grid;
  }
}

@media (max-width: 360px) {
  .pro-mobile-cta {
    left: 10px;
    right: 10px;
    gap: 8px;
    padding: 0;
  }

  .pro-mobile-cta a {
    min-height: 50px;
    border-radius: 15px;
    font-size: 14px;
  }
}
