.menu-btn {
  background-color: #006837;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  margin: 5px;
  transition: transform 0.3s ease;
  font-family: DINPro-Bold;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
}

.menu-btn:hover {
  transform: scale(1.1);
}

.menu-btn-inverse {
  background-color: white;
  color: #006837;
  padding: 10px 20px;
  border-radius: 10px;
  border: #006837 solid 2px;
  display: inline-block;
  text-align: center;
  margin: 5px;
  transition: transform 0.3s ease;
  font-family: DINPro-Bold;
  font-size: 22px;
  cursor: pointer;
  text-decoration: none;
}

.menu-btn-inverse:hover {
  transform: scale(1.1);
}

.dropdown-center .menu-btn {
  background-color: #006837;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  margin: 5px;
  transition: transform 0.3s ease;
  font-family: DINPro-Bold;
  font-size: 22px;
  cursor: pointer;
  text-decoration: none;
}

.dropdown-center .menu-btn:hover {
  transform: scale(1.1);
  background-color: #006837;
  color: white;
}

.dropdown-center .dropdown-menu {
  background-color: #02361e;
}


.dropdown-center .dropdown-item {
  color: #bed6cc;
}


.dropdown-center .dropdown-item:hover {
  color: #fff;
  background-color: #006837;
}

.btn-contato {
  background-color: #349f6a;
  height: 50px;
  color: white;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 2px solid #6fdca6;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.btn-contato:hover {
  background-color: #065f46;
}

.btn-contato:focus {
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.5);
}

.btn-voltar {
  background-color: #f4bb4d;
  height: 50px;
  color: white;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 2px solid #ffda50;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.btn-voltar:hover {
  background-color: #c1933c;
}

.btn-voltar:focus {
  box-shadow: 0 0 0 4px rgba(116, 88, 36, 0.5);
}

.btn-social {
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-right: 6px;
  margin-bottom: 10px;
  padding-top: 3px;
  background: #2d8563;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 20px;
  color: #ddd;
  line-height: 40px;
  text-align: center;
}

.btn-social:hover {
  background: #006837;
  color: white;
}

.btn-back-top {
  display: none;
  width: 35px;
  height: 35px;
  margin-right: 6px;
  margin-bottom: 10px;
  padding-top: 2px;
  background: #2d8563;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 15px;
  color: #ddd;
  line-height: 30px;
  text-align: center;
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 10;
  
}

.btn-back-top:hover {
  background: #006837;
  color: white;
}


/* Para telas menores que 600px */
@media (max-width: 580px) {
  .menu-btn {
    font-size: 12px;
  }
}

/* Para telas menores que 600px */
@media (max-width: 620px) {
  .btn-contato {
    font-size: 11px;
    height: 40px;
    padding-left: 5px;
    padding-right: 5px;
    /* padding-top: 5px; */
  }
  
  .btn-voltar {
    font-size: 11px;
    height: 40px;
    padding-left: 5px;
    padding-right: 5px;
    /* padding-top: 5px; */
  }
}

/* Para telas entre 600px e 1024px /* */
@media (min-width: 620px) and (max-width: 955px) {

  .btn-contato {
    font-size: 12px;
  }

  .btn-voltar {
    font-size: 12px;
  }
}