.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  text-align: center;

  width: calc(100% - 20px);

  position: fixed;
  top: 0;
  left: 0;
}



nav a {
  color: white;
  text-decoration: none;
}

footer {
  background: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.hero {
  background: url('images/2.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  height: 100vh;
  text-align: center;
}

.hero .text {
  width: 300px;
  padding: 0 20px;
  height: 100vh;
  left: 20%;
  top: 0;
  background-color: black;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefits,
.testimonials,
.cta {
  padding: 50px 20px;
  text-align: center;
}

.benefits .items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.testimonials .items {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials .person img {
  border-radius: 100%;
  height: 80px;
}

.testimonials .person {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cta {
  background: #f4f4f4;
}

.cta button {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

#SaibaMais {
  border: solid 2px #fff;
  padding: 10px 0;
  background: transparent;
  color: white;
  text-transform: uppercase;
}

.whatsapp {
  position: fixed;
  bottom: 80px;
  right: 10px;
  height: 45px;
}

.whatsapp img {
  height: 45px;
}

@media (max-width: 700px) {
  header {
    flex-direction: column;
    z-index: 999;
  }

  .hero .text {
    width: calc(100% - 40px);
    padding: 0 20px;
    height: 20vh;
    left: 0;
    top: 80vh;
    background-color: black;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .testimonials .items {
    flex-wrap: wrap;
  }
}