@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400;500;600&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f9f9fb;
  color: #1a1a1a;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}

.header button {
  background: #6b21a8;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.header button:hover {
  background: #581c87;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  gap: 40px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  color: #666;
  margin-bottom: 20px;
}

.hero img {
  width: 420px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* BOTÕES */
.buttons button {
  margin-right: 10px;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.buttons button:first-child {
  background: #6b21a8;
  color: white;
}

.buttons button:first-child:hover {
  background: #581c87;
}

.outline {
  border: 1px solid #ddd;
  background: white;
}

/* CATÁLOGO */
#catalogo h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 40px;
}

/* CARD */
.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

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

.card h3 {
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
}
.zap-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  font-size: 26px;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: 0.3s;
  z-index: 999;
}

.zap-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

.footer {
  background: #111;
  color: #ddd;
  padding: 60px 40px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer h3, .footer h4 {
  color: white;
}

.footer a {
  color: #aaa;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}


.form-section {
  background: #fafafa;
  padding: 80px 20px;
  text-align: center;
}

.form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.form-section p {
  color: #666;
  margin-bottom: 20px;
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

form button {
  padding: 12px;
  background: #6b21a8;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

form button:hover {
  background: #581c87;
}

.privacy {
  font-size: 12px;
  color: #999;
}.top-bar {
  display: flex;
  gap: 10px;
  padding: 20px;
  flex-wrap: wrap;
}

.top-bar input,
.top-bar select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.top-bar button {
  background: #6b21a8;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}

.badge {
  position: absolute;
  background: #6b21a8;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 8px;
  top: 10px;
  left: 10px;
}

.card {
  position: relative;
}

.type {
  font-size: 12px;
  color: #666;
  padding: 0 15px 10px;
}

/* ============================= */
/* 📱 MOBILE OPTIMIZATION */
/* ============================= */

@media (max-width: 768px) {

  /* HEADER */
  .header {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    text-align: center;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero img {
    width: 100%;
    max-width: 300px;
  }

  /* BOTÕES HERO */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .buttons button {
    width: 100%;
    margin: 0;
  }

  /* TOP BAR */
  .top-bar {
    flex-direction: column;
  }

  .top-bar input,
  .top-bar select,
  .top-bar button {
    width: 100%;
  }

  /* GRID */
  .grid {
    padding: 20px;
    gap: 15px;
  }

  /* FORM */
  .form-section {
    padding: 40px 20px;
  }

  /* FOOTER */
  .footer {
    padding: 40px 20px;
    text-align: center;
  }

  /* WHATSAPP FLOAT */
  .zap-float {
    bottom: 15px;
    right: 15px;
    font-size: 22px;
    padding: 14px;
  }
}

/* POPUP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.hidden {
  display: none;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.popup img {
  width: 100%;
  border-radius: 10px;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 20px;
}

.popup-buttons button {
  margin-top: 10px;
  padding: 10px;
  background: #6b21a8;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}