/*****************************
 *  BUTTON
 ******************************/
button {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

a {
  color: var(--f-global-color-secondary);
  font-weight: 700;
}

a:focus,
a:hover,
a:active {
  text-decoration: none;
  color: var(--f-global-color-quinary);
}

.btn {
  padding: 0.6rem 1rem;
  font-size: 80%;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  border: 0;
  border-radius: var(--f-global-radius-md);
  margin: 1rem 0;
  font-weight: 700;
  cursor: pointer;

  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.btn:hover,
.btn:focus,
.btn:active {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--f-global-color-secondary);
  color: var(--f-global-color-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--f-global-color-tertiary);
  color: var(--f-global-color-primary);
  border: none;
}

.btn-secundary {
  background-color: var(--f-global-color-septenary);
  color: var(--f-global-color-white);
}

.btn-secundary:hover,
.btn-secundary:focus,
.btn-secundary:active {
  background-color: var(--f-global-color-octonary);
  color: var(--f-global-color-septenary);
}

.btn-prev-next {
  font-size: 2rem;
  color: var(--f-global-color-primary);
}

.btn-mapa {
  color: var(--f-global-color-secondary);
  font-size: 12px;
}

.btn-mapa-localizacao {
  background: unset;
  border: unset;
  outline: none;
  padding-left: 15px;
}

.btn-mapa-localizacao:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-fecap,
.btn-fecap:not([href]) {
  background: var(--f-global-color-secondary);
  color: var(--f-global-color-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.btn-fecap:hover,
.btn-fecap:not([href]):hover {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: var(--f-global-color-tertiary);
  color: var(--f-global-color-primary);
}

.btn-fecap-unset {
  background: unset;
  color: var(--f-global-color-primary);
  font-size: 1rem;
  border: 1px solid var(--f-global-color-primary);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-fecap-unset:hover,
.btn-fecap-unset:focus {
  background: var(--f-global-color-secondary);
  color: var(--f-global-color-primary);
  border: 1px solid var(--f-global-color-primary);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-fecap-lg {
  margin: 1rem;
  padding: 0.5rem 3rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  font-family: "Season Sans", sans-serif;
  font-weight: 600;
  border: unset;
  border-radius: var(--f-global-radius-md);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-fecap-lg:hover,
.btn-fecap-lg:focus,
.btn-fecap-lg:active {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-fecap-lg span {
  font-size: 0.7rem;
  color: var(--f-global-color-primary);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-fecap-lg:hover span,
.btn-fecap-lg:focus span,
.btn-fecap-lg:active span {
  color: var(--f-global-color-primary);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-align {
  width: 100%;
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 767.98px) {
  .btn-fecap {
    font-size: 0.7rem;
  }

  .btn-fecap-lg {
    font-size: 1rem;
  }
}