* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #333;
}

/* HERO */
.hero {
  background: #f4b400;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.social-hero a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
/* Íconos */
.social-hero i {
  font-size: 18px;
}

/* Footer */
.social a {
  margin: 0 10px;
  font-size: 22px;
  color: #000;
  transition: 0.3s;
}

.social a:hover {
  color: #333;
}
.social-hero a:hover {
  background: #000;
  color: #fff;
}
.overlay {
  color: white;
}

.logo {
  width: 400px;
  max-width: 95%;
  margin-bottom: 25px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.btn {
  background: #000;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #333;
}

/* PRODUCTOS */
.productos {
  padding: 60px 20px;
  text-align: center;
}

.productos h2 {
  margin-bottom: 40px;
}

.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* PROMO */
.promo {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

/* FOOTER */
footer {
  background: #f4b400;
  text-align: center;
  padding: 30px;
}

.social a {
  margin: 0 10px;
  text-decoration: none;
  color: black;
  font-weight: 600;
}