.navegacao {
    text-decoration: none;
    color: aliceblue;
  }

  #descricao,
  #menu {
    background: url(../img/simple-header-blended-small.png) fixed no-repeat;
    color: aliceblue;
    background-size: cover;
    background-position: center;
    width: 100%;
    /* height: 56%; */
  }

  #descricao {
    text-align: center;
    height: auto;
  }



  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .navbar {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .logo {
    font-size: 24px;
  }

  .nav-links {
    display: flex;
  }

  .nav-links li {
    list-style: none;
    margin-left: 20px;
  }

  .nav-links li a {
    color: #fff;
    text-decoration: none;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
  }

  @media screen and (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: #333;
    }

    .nav-links li {
      margin: 20px 0;
    }

    .hamburger {
      display: flex;
    }
  }

  .logo {
    width: 30px;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .typing-text {
    padding: 20px;
    font-size: 20px;
  }

  body {
    font-family: Arial, sans-serif;
  }

  .card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .product-image {
    width: 100%;
    border-radius: 8px;
  }

  .product-name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
  }

  .product-price {
    font-size: 16px;
    color: #007bff;
    margin-top: 5px;
  }

  #cards {
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  .card-link {
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-align: center;
  }