* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #faf7f5;
  color: #333;
}

header {
  background: #c89fa3;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

nav {
  background: #b8898e;
  padding: 10px;
  text-align: center;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 20px 20px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #8a5a5f;
}

.about {
  text-align: center;
      max-width: 800px;
      margin: auto;
      font-size: 1.05rem;
      line-height: 1.6;
}

.filtros {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filtros input,
.filtros select {
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #d2b2b6;
  min-width: 240px;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card .info {
  padding: 15px;
}

.btn-whatsapp {
  display: block;
  background: #25D366;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 10px;
}

#paginacao {
  text-align: center;
  margin-top: 30px;
}

#paginacao button {
  padding: 8px 14px;
  margin: 4px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #e6c9cc;
}

#paginacao .ativo {
  background: #8a5a5f;
  color: #fff;
}

/* RODAPÉ */
    footer {
      background: #8a5a5f;
      color: #fff;
      padding: 45px 20px 25px;
      margin-top: 60px;
    }

    .footer-content {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .footer-content h3 {
      margin-bottom: 12px;
      font-size: 1.1rem;
    }

    .footer-content p {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 12px;
    }

    .social-icons a svg {
      width: 28px;
      height: 28px;
      fill: #8a5a5f;
      background: #fff;
      padding: 6px;
      border-radius: 50%;
      transition: transform .2s;
    }

    .social-icons a:hover svg {
      transform: translateY(-4px);
    }

    .footer-bottom {
      margin-top: 30px;
      font-size: 0.85rem;
      opacity: 0.9;
      text-align: center;
    }

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
}

/* MODAL DE ZOOM DA IMAGEM */
.modal-imagem {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-imagem img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-imagem .fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.card img {
  cursor: zoom-in;
  transition: transform .3s;
}

.card img:hover {
  transform: scale(1.03);
}

