* {
  font-family: 'Hepta Slab', sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--primary);
  color: white;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

b, strong {
  font-weight: bold !important;
}

p.subtitle {
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.limit {
  width: 100%;
  margin: auto;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
/* Botão Verde */
.btn-green,
.btn-green:focus {
  border: none;
  color: #fff;
  height: 45px;
  padding: 0 30px;
  margin-top: 20px;
  border-radius: 28px;
  position: relative;
  transition: top 0.3s;
  transition: box-shadow 0.3s;
  background-color: #1f996c;
}
.btn-green:hover {
  left: 1px;
  bottom: 1px;
  box-shadow: 0 2px 2px #666;
}

/* Botão com cor secundaria */
.btn-red,
.btn-red:focus {
  border: none;
  color: #fff;
  height: 45px;
  padding: 0 10px;
  margin-top: 10px;
  border-radius: 28px;
  position: relative;
  transition: top 0.3s;
  transition: box-shadow 0.3s;
  background-color: #ee5245;
  text-transform: uppercase;
  font-weight: 500;
}
.btn-red:hover {
  left: 1px;
  bottom: 1px;
  box-shadow: 0 2px 2px #666;
}

.btn-close,
.btn-close:focus {
  border: none;
  color: #fff;
  height: 45px;
  padding: 0 30px;
  margin-top: 20px;
  border-radius: 28px;
  position: relative;
  transition: top 0.3s;
  transition: box-shadow 0.3s;
  background-color: #ee5245;
}

.btn-close:hover {
  left: 1px;
  bottom: 1px;
  box-shadow: 0 2px 2px #666;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 550px !important;
    margin-top: 60px !important;
  }
  .button-close-modal {
    right: -25px;
  }
}

@media (min-width: 768px) {
  .modal-dialog {
    max-width: 850px !important;
  }
}

@media (min-width: 992px) {
  .small-paddings div[class*='col'] {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
}

.mt-100px {
  margin-top: 100px;
}

button,
button:focus {
  outline: none !important;
  background: none;
}

.modal-content {
  background-color: transparent !important;
  border: none !important;
}

.modal-backdrop {
  background-color: #041f32 !important;
}

.modal-backdrop.show {
  opacity: 0.9 !important;
}

.container-button-close-modal {
  width: 100%;
  text-align: end;
}

.button-close-modal {
  justify-content: center;
  align-items: center;
  padding: 2px 5px;
  cursor: pointer;
  z-index: 100;
  border: none;
  position: relative;
}
