body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding-top: 60px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #7a7979;
  padding: 10px 20px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: 40px;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 40px;
}

.nav-links a {
  margin-left: 15px;
  text-decoration: none;
  color: #000;
  
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  margin-right: 40px;
}

  .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .hamburger-menu {
      display: block;
    }
  }
  

  /* sobre */

  .inicial-text {
    padding: 20px;
    background-color: #fff;
  }
  
  .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
  }
  
  .imagem {
    
    text-align: center;
  }
  
  .imagem img {
    width: 250px;
    height: auto;
    max-width: 100%;
  }
  
  .texto {
    background-color: #e6e4e4c2;
    margin-top: 20px;
    padding: 0 100px;
  }
  
  .texto-principal {
    font-family: 'Jazz LET', fantasy;
    font-size: 50px;
    font-weight: bold;
  }
  
  .texto-destaque {
    margin-top: -20px;
    font-size: 13px;
  }
  

  /* Media queries */
  @media (max-width: 768px) {
    .container {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }
  
    .texto {
      padding: 0 20px;
    }
  
    .texto-principal {
      font-size: 40px;
    }
  
    .texto-destaque {
      font-size: 12px;
    }

    .texto-destaque p {
      font-size: 12px;
    }
  }

  .button-inicial {
    font-family: 'Jazz LET', fantasy;
    background-color: #7a7979;
    width: 200px;
    height: 30px;
    border: none;
    vertical-align: middle;
  }

  .segunda-parte {
    background-color: #7a7979;
    padding: -10px;
    color: #000;
  }
  
  .segunda-parte p {
    text-align: center;
    font-family: 'Jazz LET', fantasy;
    font-weight: bold;
    font-size: 200%;
  }
  
  /* Media queries */
  @media (max-width: 768px) {
    .segunda-parte p {
      font-size: 150%; 
    }
    
    .segunda-parte {
      padding: -10px; 
    }
  }
  
  @media (max-width: 480px) {
    .segunda-parte p {
      font-size: 100%; 
    }
    
    .segunda-parte {
      padding: -10px;
    }
  }
  

  .quarta-parte {
    padding: 1px;
    background-color: #fff;
  }
  
  .quarta-primeiro-texto {
    background-color: #636262c2;
  }
  
  .quarta-primeiro-texto p.f {
    font-family: 'Jazz LET', fantasy;
    font-size: 130%;
    color: #000;
    font-weight: bold;
    text-align: center;
  }
  
  .quarta-primeiro-texto p.s {
    font-family: 'Jazz LET', fantasy;
    font-size: 100%;
    font-weight: bold;
    text-align: center;
  }
  
  .quarta-parte p.t {
    font-family: 'Jazz LET', fantasy;
    font-size: 100%;
    font-weight: bold;
    text-align: center;
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
  }
  
  .quarta-parte p.q {
    font-family: 'Jazz LET', fantasy;
    font-size: 80%;
    color: #000;
    text-align: left;
    grid-column: 2;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  
    .quarta-parte p.q {
      grid-column: unset;
      justify-self: center;
    }
  }

  
  .grid-container button {
    font-family: 'Jazz LET', fantasy;
    background-color: #7a7979;
    width: 200px;
    height: 30px;
    border: none;
    vertical-align: middle;
  }

  .image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .image-wrapper img {
    width: 20%; 
    height: auto;
  }

  .button-segundo {
    display: flex;
    justify-content: center;
  }

  .button-segundo a {
    text-decoration: none;
    background-color: #7a7979;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
  }

  .image-pagina3 {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
  }
  
  .image-pagina3 img {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .image-pagina3 {
      flex-direction: column;
    }
  }

  .testimoniall {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .testimonial-image img {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
  }
  
  .testimonial-text h3 {
    margin-top: 0;
  }
  
  .testimonial-text p {
    margin-bottom: 0;
  }

  .quinta-parte {
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #636262c2;
  }

  .quinta-parte p {
    font-size: 40px;
    font-family: 'Jazz LET', fantasy;
    font-weight: bold;
  }



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

  .image-pessoa img {
    width: 400px;
    height: auto;
    margin: 10px;
  }

  @media (max-width: 768px) {
    .image-pessoa img  {
      width: 300px;
    }
  }

  @media (max-width: 458px) {
    .image-pessoa img  {
      width: 250px;
    }
  }

  @media (max-width: 617px) {
    .image-pessoa img  {
      width: 300px;
    }
  }
  


  h1 {
    text-align: center;
  }

  #products {
    font-size: 60px;
    font-family: 'Jazz LET', fantasy;
    background-color: #7a7a7a;
  }

  .product-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .product {
    background-color:  #e6e4e4c2;
    border: 1px solid #0a0909;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
  }

  .product img {
    height: auto;
    width: 20%;
    margin-bottom: 10px;
  }

  .product h3 {
    margin-bottom: 10px;
  }

  .product p {
    color: #888;
  }

  .product a {
    display: inline-block;
    background-color: #8a8484c2;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Jazz LET', fantasy;
    transition: background-color 0.3s ease;
  }
  
  .product a:hover {
    background-color: #6c6666c2;
  }

  .product .price {
    font-weight: bold;
    margin-top: 10px;
  }

  @media (max-width: 768px) {
    .product-container {
      grid-template-columns: 1fr;
    }
  }

  .as {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
  
  .as > div {
    width: 200px;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 5px;
    text-align: center;
  }
  
  .as > div p:first-child {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .as > div p:last-child {
    font-size: 14px;
    color: #777;
  }


  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-section {
    width: 250px;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-section p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .social-media {
    list-style: none;
    padding: 0;
    display: flex;
  }
  
  .social-media li {
    margin-right: 10px;
  }
  
  .social-media li a {
    color: #fff;
    font-size: 20px;
  }
  
  .footer-bottom {
    border-top: 1px solid #555;
    padding-top: 10px;
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
  }
  


button {
  margin-top: 10px;
}


.testimonials-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
}

.testimonial {
  background-color: #575e63;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}

h3 {
  margin-top: 0;
}

p {
  margin-bottom: 0;
}