
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
      color: #333;
    }

    header {
      background-color: #d4a373
;
      color: white;
      padding: 20px;
    }

    nav ul {
	  list-style: none;
	  padding: 0;
	  margin: 0;
	  display: flex;
	  justify-content: center; /* Centraliza os itens */
	}

	nav ul li {
	  margin: 0 15px; /* Espassamento horizontal entre itens */
	}

	nav ul li a {
	  color: white;
	  text-decoration: none;
	  font-weight: bold;
    display: inline-block;
    border-radius: 5px;
    /*transition: background-color 0.3s, color 0.3s; Smooth transition */
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    
	}
  nav ul li a:hover {
  transform: scale(1.2); /* Zooms in the element */  
  background-color: #e6e5dc5c; /* New background on hover */
  color: white; /* New text color on hover */
}

    main {
      padding: 20px;
      background-color: white;
    }

    section, article, aside {
      margin-bottom: 20px;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      background-color: #fafafa;
    }

    footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 10px;
    }

   /* Here we have the code for the items*/

   body {
      font-family: Arial, sans-serif;
      background-color: #fff;
      padding: 20px;
    }

    .product-grid {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .product-card {
      width: 160px;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s;
    }

    .product-card:hover {
      transform: scale(1.05);
    }

    .product-card img {
      width: 100%;
      border-radius: 5px;
    }

    .product-card h3 {
      font-size: 14px;
      color: #1a0dab;
      margin: 10px 0 5px;
    }

    .product-card .price {
      font-weight: bold;
      color: #000;
    }

    .product-card .info {
      font-size: 12px;
      color: #555;
      margin: 5px 0;
    }

    .product-card a {
      font-size: 12px;
      color: #1a0dab;
      text-decoration: none;
      display: block;
      margin-top: 8px;
    }

    .product-card a:hover {
      text-decoration: underline;
    }
