/* Barra flotante móvil inteligente - precio y conversión (Neuromarketing UX) */
.barra-precio-movil {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.14);
  padding: 8px 14px 10px;
  z-index: 1040;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  transition: transform 0.3s ease;
}

.barra-precio-movil h4 {
  font-size: 1.28rem;
  color: #0284c7;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.barra-precio-movil .btn-state-initial {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 13.5px !important;
  padding: 11px 12px !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.barra-precio-movil .btn-state-ready {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 13.5px !important;
  padding: 11px 12px !important;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.45) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-green-cta 2.2s infinite;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.barra-precio-movil .btn-state-initial:active,
.barra-precio-movil .btn-state-ready:active {
  transform: scale(0.97);
}

@keyframes pulse-green-cta {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.65);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@media (min-width: 768px) {
  .barra-precio-movil {
    display: none !important;
  }
}

/* Eliminar padding-bottom de body para evitar la franja blanca bajo el footer */
body {
  padding-bottom: 0 !important;
}
