* {
  margin: 0;
  padding: 0;
   font-family: sans-serif;
  text-decoration: none;
}

.header {
  background: rgb(228, 21, 6);
  padding-inline: 16px;
}

.nav {
  max-width: 1280px;
  height: 70px;
  margin-inline: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  visibility: hidden;
  font-size: 48px;
  color: hidden;
}

.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-list a {
  font-size: 18px;
  color: #fff;
  padding-block: 16px;
}

.hero {
  height: calc(100vh - 70px);
  background: center / cover no-repeat url("../assets/CCYGotasTratamentoParaDoresNasJuntaseArticulacoes.PNG");
}

.hamburger {
  display: none;
  border: none;
  background: none;
  border-top: 3px solid #fff;
  cursor: pointer;
}

.hamburger::after,
.hamburger::before {
  content: " ";
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin-top: 5px;
  position: relative;
  transition: 0.3s;
}

.separador{
  height: 70px;
  color: rgb(228, 21, 6);
  background-color: rgb(228, 21, 6);
}

.Produto{
  display: flex;
  align-items: center;
  flex-direction: column;
  height: auto;
  width: 100%;
  
}

.Produto2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: auto;
  width: 100%;
  
}

.Produto img {
  margin: 30px;
  border-radius: 15px;
  box-shadow: -1px 3px 15px 1px rgb(0, 0, 0);
}

.Produto2 img {
  margin: 30px;
  border-radius: 15px;
  box-shadow: -1px 3px 15px 1px rgb(0, 0, 0);
  width: 620px;
}

.Saiba-Mais{
  height: 50px;
  width: 620px;
  background-color: #91f136;
  color: #fff;
  border-radius: 15px;
  font-size: xx-large;
  margin-bottom: 30px;
  border: none;
  box-shadow: -1px 3px 15px 1px rgb(0, 0, 0);
}

.Saiba-Mais a {
  color: #fff;
}

@media (max-width: 750px) {
  


    .hero{
    height: 650px;
    width: 100%;

  }

  .Produto{
    height: 430px;
    width: 100%;
    
  }

   .Produto img{
    height: 100%;
    width: 250px;
   }

    .Produto2 img{
    height: 100%;
    width: 250px;
   }

   .Produto a {
    margin-bottom: 50px;
   }

   .Saiba-Mais{
    width: 250px;
   }

   .Saiba-Mais a{
    margin-top: 30px;
   }
  
  
  .hamburger {
    display: block;
    z-index: 1;
  }



  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(248, 48, 41);
    clip-path: circle(100px at 90% -15%);
    transition: 1s ease-out;

    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 0;

    pointer-events: none;
  }

  .nav-list a {
    font-size: 24px;
    opacity: 0;
  }

  .nav-list li:nth-child(1) a {
    transition: 0.5s 0.2s;
  }

  .nav-list li:nth-child(2) a {
    transition: 0.5s 0.4s;
  }

  .nav-list li:nth-child(3) a {
    transition: 0.5s 0.6s;
  }

  /* Estilos ativos */

  .nav.active .nav-list {
    clip-path: circle(1500px at 90% -15%);
    pointer-events: all;
  }

  .nav.active .nav-list a {
    opacity: 1;
  }

  .nav.active .hamburger {
    position: fixed;
    top: 26px;
    right: 16px;
    border-top-color: transparent;
  }

  .nav.active .hamburger::before {
    transform: rotate(135deg);
  }

  .nav.active .hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }



  
}