* {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  margin: 0px;
  padding: 0px;
}

.hero {
    position: relative;
    background: url('banner.webp') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Black color with 60% opacity */
    z-index: 1; /* Ensure the overlay is behind the content */
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2; /* Ensure the content is on top of the overlay */
}

.hero-title {
    font-size: 50px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
}

.hero-subtitle {
    font-size: 25px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out 0.5s;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }

.hero-button:hover {
    background-color: #2980b9;
}

.botoes {
  gap: 10px;
  margin-left: 5%;
  margin-right: 5%;
}

.text-bg {
  background-color: rgb(236, 236, 236);
  padding-bottom: 50px;
}

.text-section {
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.text-section > h1 {
  font-weight: bold;
  text-align: center;
  font-size: 3vh;
}

.text-section > p {
  font-size: 2.5vh;
  margin: auto;
  margin-top: 10px;
  padding-left: 30%;
  padding-right: 30%;
  text-align: justify;
}

.text-section > h2 {
  color: gray;
  font-size: 2.8vh;
  text-align: center;
  margin-top: 40px;
}

a {
  color: blue;
}

#inline-button {
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
}

.team-section {
  flex-direction: column;
  width: 60%;
  margin: 0 auto;
}

.team-section > h1 {
  font-weight: bold;
  text-align: center;
  font-size: 3vh;
}

.team-section > p {
  font-size: 2.5vh;
  margin: 20px;
  text-align: center;
}

.team-section > .botoes {
  width: 25%;
  margin: auto;
  text-align: center;
}

.team-container{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: auto;
  margin: 30px;
}

.team-member {
  text-align: center;
  width: 350px;
}

.team-member > h1 {
  font-weight: bold;
  font-size: 2.8vh;
}

.team-member > h2 {
  font-weight: bold;
  font-size: 2.5vh;
  color: gray;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 5px;
}

.team-member > p {
  margin-bottom: 10px;
}

footer {
  height: 10vh;
  background-color: purple;
}

@media screen and (width < 1000px) {
  .hero-title {
    font-size: 6vh;
  }
  .hero-subtitle {
    font-size: 3vh;
  }
  .hero-button {
    font-size: 4vh;
  }
  .botoes {
    gap: 20px;
  }

  .text-section > p {
      padding-left: 5%;
      padding-right: 5%;
  }

  .team-section {
    width: 95%;
    margin: 0 auto;
    justify-content: center;
    display: flex;
  }

  .team-container{
    flex-direction: column;
    justify-content: center;
    margin: 20px;
    gap: 30px;
    margin: 0 auto;
  }

  .team-member {
    width: 95%;
  }

  .team-member > h1 {
    font-weight: bold;
    font-size: 3vh;
  }

  .team-member > p {
    font-size: 2.5vh;
    padding-left: 5%;
    padding-right: 5%;
  }

  .team-member > botoes, .hero-button {
    width: 200px;
    font-size: 2.5vh;
}