/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f3f5;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #d63384;
  color: white;
  padding: 1rem;
  text-align: center;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Filtros */
.filtros {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}

.filtros input,
.filtros select {
  padding: 10px;
  width: 90%;
  max-width: 400px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Grade de produtos */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Cartão do produto */
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.card h2 {
  font-size: 1.1rem;
  margin: 10px 0 5px;
}

.card p {
  font-size: 0.9rem;
  margin: 4px 0;
  color: #666;
}

.card .preco {
  font-weight: bold;
  color: #d63384;
  margin-top: 5px;
}

/* Botão carregar mais */
#btn-carregar {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #d63384;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#btn-carregar:hover {
  background-color: #bf2a76;
}

#btn-carregar:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 15px;
  font-size: 0.85rem;
  color: #999;
}





.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.hidden {
  display: none !important;
}



.modal .botoes {
  display: flex;
  justify-content: center;
}


.modal-conteudo {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.modal-conteudo h2 {
  margin-bottom: 10px;
}

.modal-conteudo p {
  margin-bottom: 20px;
  color: #555;
}

#btn-confirmar-idade {
  padding: 10px 20px;
  background-color: #d63384;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#btn-confirmar-idade:hover {
  background-color: #bf2a76;
}



.social-link {
  margin: 0 10px;
  color: #d63384;
}

.social-link:hover {
  color: #bf2a76;
}

.social-links {
  margin-bottom: 8px;
}