/*Seção de tornar-se membro*/
.become-member-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 300px;
  background: #77AE2F;
  margin: 80px 0;
  opacity: 90%;
  font-family: "Montserrat", sans-serif;
}

.become-member-section h3 {
  z-index: 1;
  text-align: center;
  font-size: 38px;
  margin-bottom: 30px;
  color: #fff;
}

.member-button {
  z-index: 1;
  width: auto;
  height: 50px;
  text-align: center;
  border-radius: 20px;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  background-color: #fff;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.75);
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 259ms;
}

.member-button:hover,
.member-button:focus {
  background-color: #f5f5f5;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.member-button:hover {
  transform: translateY(-2px);
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/become-member.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

@media screen and (max-width: 1024px) {
  .become-member-section h3 {
    padding: 10px;
    font-size: 32px;
  }
}