body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #444;
}

header {
  background: #fff;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  height: 70px;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #1f3c88;
  font-weight: 500;
}

.hero {
  background: #f4f6f8;
  padding: 140px 20px 100px;
  text-align: center;
}

.hero h1 {
  font-size: 38px;
  color: #142b5c;
}

.hero p {
  max-width: 700px;
  margin: 20px auto 40px;
}

.botoes a {
  display: inline-block;
  margin: 8px;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #2fa36b;
  color: #fff;
}

.btn-outline {
  border: 2px solid #1f3c88;
  color: #1f3c88;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 100px 20px;
}

.catalogo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.produto {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.galeria {
  width: 100%;
}

.galeria img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
}




.btn-whats {
  display: inline-block;
  margin-top: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.suporte {
  background: #1f3c88;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

footer {
  background: #142b5c;
  color: #ccc;
  text-align: center;
  padding: 20px;
}