 *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ===== HEADER COM LOGO ===== */

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-area img {
  width: 70px;        /* tamanho da logo */
  height: auto;
}

.title-area h1 {
  font-size: 36px;
}

.title-area p {
  font-size: 16px;
}


.header h1 {
  font-size: 36px;
}

.header p {
  margin-top: 8px;
  font-size: 16px;
}

.nav {
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav a {
  text-decoration: none;
  color: #5a189a;
  font-weight: bold;
}

.nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: 50px 0;
  text-align: center;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.5;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 22px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}

.categories {
  margin: 40px auto;
}

.categories h2 {
  text-align: center;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.category-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.category-card h3 {
  margin: 15px 0 5px;
}

.category-card p {
  font-size: 14px;
  padding: 0 10px;
}

.category-card a {
  display: inline-block;
  margin: 15px 0 20px;
  text-decoration: none;
  color: #7b2cbf;
  font-weight: bold;
}

.footer {
  background: #eee;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}
