body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  color: #fff;
}

.logo img {
  height: 60px;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.nav a.active {
  border-bottom: 2px solid #fff;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background: #28a745;
  color: #fff;
}

.btn-secondary {
  background: #ff6f61;
  color: #fff;
}

.productos-destacados {
  text-align: center;
  padding: 60px 20px;
}

.productos-destacados h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #ff6f61;
}

.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  width: 280px;
}

.card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #333;
}

.card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.clientes {
  text-align: center;
  padding: 40px 20px;
  background: #f4f4f4;
}

.clientes h2 {
  margin-bottom: 20px;
  color: #28a745;
}

.clientes .logos span {
  display: inline-block;
  margin: 10px 20px;
  font-weight: 600;
}

.site-footer {
  text-align: center;
  padding: 40px 20px;
  background: #1a1a2e;
  color: #fff;
}

.site-footer h3 {
  margin-bottom: 15px;
  color: #ffcc00;
}

.site-footer p {
  margin: 10px 0;
}

.site-footer a.btn {
  margin-top: 10px;
}
