 <style>
 body {
      font-family: Arial, sans-serif;
      margin: 20px;
      background-color: #f5f5f5;
    }


 .logo {
            
            margin-left: 120px;
        }

  .pai{

      align-items:center;
      justify-content:center;
 margin: 100px;
}


  


   .product-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 cards por linha */
            gap: 20px;
            margin: 20px;
        }

        .product-card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 10px;
        }

        .product-card img {
            width: 100%;
            height: auto;
        }

        .product-card h3 {
            margin: 10px 0;
            font-size: 18px;
        }

        .product-card .price {
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }

        .product-card .buy-btn {
            background-color: #28a745;
            margin-top: 10px;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: 80%;
        }

        .product-card .buy-btn:hover {
            background-color: #218838;
        }

        /* Estilos Responsivos */
        @media screen and (max-width: 1024px) {

            .logo {            
            margin-left: 0px;
            }

            .product-container {
                grid-template-columns: repeat(2, 1fr); /* 2 cards por linha */
            }
        }

        @media screen and (max-width: 768px) {
              .logo {            
             margin-left: 0px;
            }


            .product-container {
                grid-template-columns: 1fr; /* 1 card por linha */
            }


        }
   
  </style>
