:root {
  --bg: #170b26;
  --bg-soft: #201233;
  --card: #251638;
  --border: rgba(255, 255, 255, 0.09);
  --pink: #ff2f8f;
  --pink-deep: #d61a72;
  --yellow: #ffc93c;
  --green: #4fbf7a;
  --teal: #1fb6b0;
  --text: #fbf3ff;
  --text-muted: #bfa9d6;
  --whatsapp: #25d366;
  --radius: 1.25rem;
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(255, 47, 143, 0.6);
}
.btn-pink:hover { filter: brightness(1.08); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-yellow {
  background: var(--yellow);
  color: #201233;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }

/* Header */
.topo {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(23, 11, 38, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.marca {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
}
.marca span {
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.topo-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
}

/* Menu button (topo) */
.topo-menu-btn { flex-shrink: 0; }

/* Catalog */
.catalogo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1.5rem 2rem;
  scroll-margin-top: 70px;
}
.catalogo-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.catalogo-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
}
.catalogo-header p {
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.horario-loja {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yellow);
  margin-top: 0.7rem;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 1.1rem;
}
@media (max-width: 480px) {
  .produtos-grid { grid-template-columns: 1fr; }
}

.produto-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.produto-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 47, 143, 0.4);
  box-shadow: 0 20px 40px -20px rgba(255, 47, 143, 0.35);
}
.produto-foto {
  flex: 0 0 120px;
  width: 120px;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  overflow: hidden;
}
.produto-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.produto-info {
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
  justify-content: center;
}
.produto-info h3 {
  font-size: 0.98rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.produto-descricao {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.produto-rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  flex-wrap: wrap;
}
.produto-preco { display: flex; flex-direction: column; line-height: 1.2; }
.preco-de {
  font-size: 0.78rem;
  text-decoration: line-through;
  color: var(--text-muted);
}
.preco-por {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--pink);
}
.preco-partir {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.produto-pedir {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  background: rgba(255, 47, 143, 0.14);
  color: var(--pink);
  border: 1px solid rgba(255, 47, 143, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.produto-pedir:hover { background: var(--pink); color: #fff; }

/* Mobile: centraliza todo o texto */
@media (max-width: 760px) {
  .catalogo-header {
    text-align: center;
  }
}
