/* reset básico */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* cores aproximadas do spice market */
:root {
  --primary: #27ae60;     /* verde principal */
  --primary-dark: #219653;
  --accent: #f39c12;      /* laranja/amarelo destaque */
  --light: #f8f9fa;
  --dark: #2c3e50;
  --gray: #7f8c8d;
}

/* container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* header */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { font-size: 1.6rem; font-weight: bold; color: var(--primary); }

.menu { display: flex; gap: 2rem; list-style: none; }
.menu a { text-decoration: none; color: var(--dark); font-weight: 500; }
.menu a:hover { color: var(--primary); }

.icons { display: flex; gap: 1.5rem; }
.icons a { font-size: 1.4rem; color: var(--dark); position: relative; }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* botão padrão */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* hero */
.hero {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  padding: 80px 0 100px;
  text-align: center;
}

.hero h1 { font-size: 3.2rem; margin-bottom: 1rem; color: var(--dark); }
.hero p { font-size: 1.3rem; max-width: 700px; margin: 0 auto 2rem; color: #555; }

/* grid de benefícios / features */
.features {
  padding: 80px 0;
  background: white;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.card {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.card h3 { margin: 1.2rem 0 0.8rem; color: var(--primary); }

/* produtos */
.products {
  padding: 80px 0;
  background: var(--light);
}
.products h2 { text-align: center; margin-bottom: 3rem; }

/* footer */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
  text-align: center;
}
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: #ddd; text-decoration: none; }
.payment-methods img { height: 32px; margin: 0 8px; opacity: 0.9; }

/* mobile menu */
.menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; }
@media (max-width: 768px) {
  .menu { 
    display: none; 
    flex-direction: column; 
    position: absolute; 
    top: 100%; left: 0; right: 0; 
    background: white; 
    padding: 1rem; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .menu.active { display: flex; }
  .menu-toggle { display: block; }
}