    body {
      font-family: 'Roboto', sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
    }

    #hero {
      background-color: #0056b3;
      color: white;
      padding: 0.5rem 1rem;
      text-align: center;
    }

    #typing {
      font-size: 1.5rem;
      font-weight: bold;
      font-family: 'Courier New', Courier, monospace;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid white;
      animation: blink-cursor 0.7s steps(40) infinite;
      width: fit-content;
      max-width: 100%;
      margin: auto;
    }


    @keyframes blink-cursor {
      from { border-right-color: white; }
      to { border-right-color: transparent; }
    }

    .product-card {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 6px 20px black;
      transition: transform 0.3s ease;
      background-color: white;
      margin-bottom: 2rem;
      border: 1px solid black;
    }

    .product-card:hover {
      transform: scale(1.02);
    }

    .product-card img {
      width: 100%;
      display: block;
      object-fit: cover;
      height: 100%; /* opcional, se quiser forçar o preenchimento */
    }


    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
      color: white;
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      text-align: center;
    }

    .product-card:hover .overlay {
      opacity: 1;
    }

    .btn-buy {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      margin-top: 10px;
      transition: background-color 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-buy:hover {
      background-color: #0056b3;
    }

		@keyframes color-change {
			0% { color: #f9d951; }
			25% { color: #ff4a0b; }
			50% { color: #0fe667; }
			75% { color: #4d42f6; }
			100% { color: #01bff4; }
		}

		.word {
			animation: color-change 2s infinite;
		}

