/* ==========================================
   RESET E CONFIGURAÇÕES GERAIS DO SITE 
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffbfb; /* Um tom bem suave de fundo */
  display: flex;
  flex-direction: column; /* Garante que os blocos fiquem empilhados verticalmente */
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

/* ==========================================
   ESTILOS DO CABEÇALHO (HEADER)
   ========================================== */
.site-header {
  display: block;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #ff6b81; /* Cor rosa principal */
  text-decoration: none;
}

.whatsapp-top-btn {
  background-color: #25d366;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  transition: transform 0.2s;
}

.whatsapp-top-btn:hover {
  transform: scale(1.05);
}

/* ==========================================
   ESTILOS DA VITRINE DE PRODUTOS
   ========================================== */
.vitrine-container {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
}

.vitrine-intro {
  text-align: center;
  margin-bottom: 40px;
}

.vitrine-intro h1 {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
}

.vitrine-intro p {
  color: #666;
  font-size: 16px;
}

/* Grade de Layout (Responsiva) */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
}

/* Card de cada Anúncio */
.produto-card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.01);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

.produto-foto {
  background-color: #fafafa;
  text-align: center;
  padding: 20px;
}

.produto-foto img {
  max-width: 100%;
  height: 220px;
  object-fit: contain;
}

.produto-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.produto-info h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #333;
}

.produto-tamanhos {
  font-size: 13px;
  color: #888;
  margin: 0 0 15px 0;
}

.produto-preco {
  margin-bottom: 20px;
}

.preco-por {
  font-size: 22px;
  font-weight: bold;
  color: #ff6b81;
}

/* Botão de Compra */
.btn-comprar-anuncio {
  display: block;
  text-align: center;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.2s;
  margin-top: auto; 
}

.btn-comprar-anuncio:hover {
  background-color: #1ebd58;
}