/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #ffcc00;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  height: 100px;   /* ajusta según necesites */
  width: auto;
  display: block;
}


.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav a:hover {
  color: #e6007a;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  background: #fcefee;
}

.hero-text {
  flex: 1;
  padding: 1rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #e6007a;
}

.hero-text p {
  margin: 1rem 0;
}

.hero-img img {
  max-width: 300px;
}

/* Botón */
.btn {
  display: inline-block;
  background: #e6007a;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #b3005e;
}

/* Grid de Juguetes */
.juguetes {
  padding: 3rem 2rem;
  text-align: center;
}

.juguetes h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  max-width: 100px;
  margin-bottom: 1rem;
}

/* Ofertas */
.ofertas {
  padding: 3rem 2rem;
  background: #e6f7ff;
  text-align: center;
}

.ofertas h2 {
  margin-bottom: 1rem;
  color: #0066cc;
}

.highlight {
  color: #e6007a;
  font-weight: bold;
}

/* Footer */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

.footer p {
  margin: 0.5rem 0;
}

.social {
  margin: 1rem 0;
}

.social a {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social a:hover {
  color: #ffcc00; /* resalta con el color del header */
}

