* {
  margin: 0;
  padding: 0;
}

a {
  color: #007b3f;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.logo {
  width: auto;
  height: 100%;
  min-height: 8px;
  padding: 1vh;
  max-width: 132px;
  max-height: 74px;
  margin-top: 2px;
}

.resultExames {
  background: #007b3f;
  color: white;
  padding: 10px 6vh;
  margin: 0;
  border-radius: 60% 10%;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  background: #ffffff;
  height: 10vh;
}

main {
  background-color: #007b3f;
  background-image: linear-gradient(180deg, white, #007b3f 100%);  
  background-color: white;
  height: 90vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

main div.text{
  opacity: 0.95;
}

main div h1,h2,p {
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  color: white;
}

main div h1 {
  font-size: 10vh;
  /*font-size: clamp(1em, 1em + 1vw, 2.5em);*/
}

main div h2 {
 font-size: 4vh; 
}

main div p {
 font-size: 3vh; 
}

main div img {
  width: 100%;
  height: 90vh;
  padding: 1vh;
  max-width: 600px;
  max-height: 600px;
}

.section1 {
  background-color: white;
  height: 100vh;
}

.section2 {
  background-color: #007b3f;
  height: 100vh;
}

.section3 {
  background-color: white;
  height: 100vh;
}

.section4 {
  background-color: #007b3f;
  height: 100vh;
}

.section5 {
  background-color: white;
  height: 100vh;
}

.nav-list {
  list-style: none;
  display: flex;
  font-weight: bold;
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 10px;
}

.nav-list li a {
  padding: 15px;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #007b3f;
  margin: 10px;
  transition: 0.3s;
}

@media (max-width: 999px) {
  body {
    overflow-x: hidden;
  }
  .nav-list {
    position: absolute;
    top: 10vh;
    right: 0;
    width: 50vw;
    height: 90vh;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    z-index: 1000;
  }
  .nav-list li {
    margin-left: 0;
    opacity: 0;
  }

  .mobile-menu {
    display: block;
  }

  main {
    background-image: url("../img/layout/main/main02-999xXXX.webp");
    background-position: left top;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vw;
  }

  main div h1,h2,p {
    color: #007b3f;
  }

  main div.text {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  main div.imagem {
    display: none;
  }
}

.nav-list.active {
  transform: translateX(0);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-10px, 10px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-7px, -7px);
}