/* Barra CTA móvil fija — visible sobre el home indicator / barra del navegador */

.pb-mobile-cta {
  padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 12px));
}

@media (min-width: 1024px) {
  .pb-mobile-cta {
    padding-bottom: 0;
  }
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 12px));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 8, 23, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.45);
}

.mobile-cta-bar__btn {
  display: flex !important;
  min-height: 48px;
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(0, 163, 255, 0.35);
}

@media (max-width: 380px) {
  .mobile-cta-bar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mobile-cta-bar__btn {
    font-size: 0.875rem !important;
  }
}
