@keyframes pulse-glow-agencia {
                    0% {
                      box-shadow: 0 4px 20px rgba(227, 82, 5, 0.4);
                    }

                    50% {
                      box-shadow: 0 4px 30px rgba(255, 107, 26, 0.6), 0 0 15px rgba(227, 82, 5, 0.4);
                    }

                    100% {
                      box-shadow: 0 4px 20px rgba(227, 82, 5, 0.4);
                    }
                  }

                  #openInterestModal {
                    background: linear-gradient(135deg, #E35205 0%, #ff6b1a 100%) !important;
                    color: #fff !important;
                    border: none !important;
                    box-shadow: 0 4px 15px rgba(227, 82, 5, 0.4);
                    animation: pulse-glow-agencia 3s infinite ease-in-out;
                    font-weight: 700;
                    padding: 12px 28px;
                    border-radius: 50px;
                  }

                  #openInterestModal:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 6px 20px rgba(227, 82, 5, 0.5);
                  }