body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.header {
  background: #fff;
  width: 100%;
}

.logo-text {
  text-transform: uppercase;
  background-color: #63c6ae;
  font-size: 24px;
  margin: 0;
  padding: 20px;
  /* display: inline-block; */
  display: block;
  float: left;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
}

.header__nav {
  /* display: inline-block; */
  clear: left;
}
.header__nav ul {
  margin: 0;
  padding: 0;
}

.header__nav li {
  list-style-type: none;
  background: #242c2c;
  /**Este padding foi transferido para a classe da tag 'a' para aprimorar o efeito hover*/
  /* padding: 25px 0; */
  text-align: center;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.header__nav a {
  color: white;
  text-decoration: none;
  color: #586165;
  font-size: 14px;
  font-weight: 400;
  /**Este background foi para teste*/
  /* background: red; */
  display: block;
  padding: 25px 0;
  transition: 0.5s ease;
}

.header__nav a:hover {
  color: #63c6ae;
}

/* .header__btnMenu {
} */

.hero {
  height: 80vh;
  padding: 40px 20px;
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* background-image: linear-gradient(45deg, white 50%, transparent 50%),
  url(../img/01.jpg);
  background-size: 40px 40px, cover;
  background-repeat: no-repeat;
  background-position: center bottom, center; */
  background: linear-gradient(45deg, white 50%, transparent 50%) left
      calc(50% + 20px) bottom no-repeat,
    linear-gradient(-45deg, white 50%, transparent 50%) left calc(50% - 20px)
      bottom no-repeat,
    url(../img/01.jpg);
  background-size: 40px 40px, 40px 40px, cover;
}

.hero__title {
  background-color: #63c6ae;
  color: white;
  font-size: 28px;
  font-weight: 600;
  padding: 30px 20px;
  text-transform: uppercase;
}

.hero__text {
  background-color: #242a2c;
  margin: 5px 30px 35px;
  color: white;
  padding: 20px;
  font-size: 16px;
}

.hero__btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 15px 25px;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
}

.people-cards {
  margin-top: 2.5em;
}

.people-cards__image {
  width: 100%;
}

.people-cards__avatar {
  margin: -55px auto;
  width: 88px;
  height: 88px;
  /**Este background foi para teste*/
  /* background: red; */
  overflow: hidden;
}

.people-cards__content {
  text-align: center;
  padding: 40px 25px 10px;
  border-left: 1px solid #dbe1e7;
}

.people-cards__title {
  color: #737c85;
  font-size: 21px;
}

.people-cards__text {
  color: #929da5;
  font-size: 14px;
}
