section {

  overflow: hidden;
}

.section-whatsapp {

  background: #ffffff;
  color: rgb(28, 30, 33);
}

.section-whatsapp .title {

  font-size: 18px;
}

.formulario-whatsapp label {
  margin-left: 15px;
}

.formulario-whatsapp .form-control {

  border-radius: 50px;
}

.btn-whatsapp-page {

  background: #128c7e;
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  padding: 16px 32px;
}

.section-whatsapp hr {
  background: #dadde1 !important;
  border-width: 0 !important;
  color: #dadde1 !important;
  height: 1px !important;
}

.section-whatsapp .aviso {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}

.ring {
  content: '';
  width: 90px;
  position: fixed;
  height: 90px;
  border-radius: 999px;
  animation: pulse-ring 1.5s cubic-bezier(.215, .61, .355, 1) infinite;
  background-color: rgb(37 211 102);
  bottom: 85px;
  right: 10px;
}

div#modalOrcamento .modal-content {
  background: #e8e8e8;
  border-radius: 20px;
}

div#modalOrcamento .modal-title {
  text-align: center;
  width: 100%;
}
div#modalOrcamento .btn-whatsapp-page{
  margin: 0 !important;
}

.loading {
  position: relative;
}

.loading:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  opacity: .5;
}

.loading:after {
  content: '';
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border: 5px solid;
  border-top-color: #152d40;
  animation: spin 2s infinite;
  border-radius: 50%;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}