/* ===== Tipografia ===== */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #111111; /* Preto elegante */
}

p, li, span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

/* ===== Botões ===== */
button, .btn {
  background-color: #246BFD; /* Azul elétrico */
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 20px;
  transition: 0.3s;
  text-transform: uppercase;
}
button:hover, .btn:hover {
  background-color: #0A0A0A; /* Preto no hover */
  color: #fff;
}

/* ===== Cards de Produto ===== */
.product-card {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  background-color: #fff;
  padding: 15px;
}
.product-card:hover {
  transform: scale(1.03);
}

/* ===== Banner Hero ===== */
.hero-banner {
  background: url('sua-imagem-banner.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.hero-banner h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero-banner p {
  font-size: 20px;
  margin-bottom: 30px;
}
.hero-banner .btn {
  background-color: #FF3B30; /* Vermelho destaque */
  border-radius: 6px;
}
.hero-banner .btn:hover {
  background-color: #111111;
}
