/* Reset e Variáveis */
:root {
  --roxo: #7F3F96;
  --laranja: #F55A00;
  --amarelo: #FEC826;
  --branco: #FFFFFF;
  --fundo: #FFFBEA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: var(--fundo);
  color: #333;
}

/* Container Principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Seção Hero (Topo) */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--amarelo);
}

.hero h1 {
  font-size: 2.5rem;
  color: #3C0066;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  max-width: 600px;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  color: var(--branco);
  transition: all 0.3s;
}

.btn.purple {
  background: var(--roxo);
}

.btn.orange {
  background: var(--laranja);
}

/* Seção de Produtos */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background: var(--branco);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-badge {
  background: var(--laranja);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.price {
  color: var(--roxo);
  font-size: 1.8rem;
  font-weight: bold;
  margin: 10px 0;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
}

/* Rodapé e WhatsApp */
.footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .products {
    grid-template-columns: 1fr;
    padding: 20px 15px;
  }
  
  .product-card {
    padding: 20px;
  }
}