body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: url("Assets/logo.png") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
}


.overlay {
  background: rgba(0,0,0,0.7);
  min-height: 100vh;
  padding: 20px;
}

.section { display: none; }
.active { display: block; }

img.logo {
  max-width: 300px;
  margin: 20px auto;
  display: block;
}

.socials img {
  width: 26px;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}
.socials img:hover { transform: scale(1.1); }

/* Links e nomes de produtos */
a, .product p {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #ff4444;
}

.btn {
  display: inline-block;
  margin: 15px;
  padding: 12px 25px;
  border: 2px solid #fff;
  background: #fff;   /* fundo branco */
  color: #000;        /* texto preto */
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
}
.btn:hover {
  background: #ff0000; /* hover vermelho */
  color: #fff;
  border-color: #ff0000;
}

.products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product {
  background: rgba(34,34,34,0.9);
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  width: 200px;
}
.product img {
  width: 100%;
  border-radius: 10px;
}

.product-detail {
  background: rgba(34,34,34,0.9);
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
}
