/* Hero banner on home page */
.hero-banner {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.hero-banner img {
  max-width: 320px;
  height: auto;
}

/* Product cards grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}

.product-card {
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.product-card span {
  display: block;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Product pages: side-by-side videos */
.video-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.video-row video {
  flex: 1;
  min-width: 280px;
  max-width: 100%;
  border-radius: 6px;
}

/* WhatsApp icon color */
.wa {
  color: #25D366 !important;
}

/* Texto justificado em todo o conteúdo */
.md-content p {
  text-align: justify;
}

.hero-banner p {
  text-align: center;
}