* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

.header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('../images/banner/losparcas.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Configuração para celular (Telas até 768px) */
@media (max-width: 768px) {
    .hero {
        /* Nova imagem vertical para o celular */
        background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('../images/banner/losparcas-mobile.jpg');
        background-size: cover;
        background-position: center;
    }
}

.hero-content h1 {
  font-size: 4.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.4rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-primary {
  background: #ffd700;
  color: #000;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  background: #ffed4e;
}

.products-section {
  padding: 100px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(192, 192, 192, 0.15);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  color: #999b9b;
  margin-bottom: 0.5rem;
}

.country {
  font-size: 0.95rem;
  color: #aaa;
}

.btn-buy {
  margin-top: 1rem;
  width: 100%;
  padding: 12px;
  background: #222;
  color: #ffd700;
  border: 1px solid #ffd700;
  border-radius: 8px;
  cursor: pointer;
}

.redes-sociais {
  display: flex;
  gap: 20px;
  font-size: 30px; /* Tamanho dos ícones */
}
.whatsapp { color: #25D366; }
.instagram { color: #E1306C; }
a { text-decoration: none; }
