body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0b0c10;
  color: #fff;
}

header {
  text-align: center;
  padding: 3rem 1rem;
}

header h1 {
  font-size: 3rem;
}

header h2 {
  font-weight: 300;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.background-logo img{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
}

.logo {
  max-width: 200px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centraliza os cards */
  gap: 1.5rem;
  padding: 2rem;
}

.card {
  width: 220px; /* Largura fixa estilo catálogo */
  background: #1f1f1f;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}


.card:hover {
  transform: scale(1.05);
  background: #2c2c2c;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}

.card h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.card p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.card:hover p {
  opacity: 1;
  max-height: 200px; /* altura suficiente para o texto */
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  z-index: 1000;
  width: 60px;
  height: 60px;
  padding: 0;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}


footer {
  padding: 2rem;
  text-align: center;
  background-color: #111;
  font-size: 0.9rem;
  color: #999;
}

footer a {
  color: #999;
  margin: 0 10px;
  text-decoration: none;
}

.logo-footer {
  height: 90px;
}
