body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

.header {
  text-align: center;
  padding: 1rem;
}

.resaltado {
  background-color: #d300c5;
  color: white;
  padding: 0.2rem 0.5rem;
}

.menu {
  margin-top: 1rem;
}

.btn {
  padding: 0.5rem 1rem;
  border: none;
  margin: 0.3rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

.morado { background-color: #7a1e96; }
.celeste { background-color: #5ec5e4; }
.azul { background-color: #4b63ff; }
.verde { background-color: #74cc39; }
.amarillo { background-color: #f5c400; color: black; }
.naranja { background-color: #ff5f00; }

.principal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.imagen-personaje img {
  max-height: 400px;
  margin-right: 2rem;
}

.logo-mab img {
  max-height: 150px;
}

.logo-mab h2 {
  text-align: center;
  color: #111;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.fondo-patron img {
  width: 100%;
}

.footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
}

.footer img {
  width: 30px;
}
.social-float {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0.5rem;
  z-index: 1000;
}

.social-float a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-float a img:hover {
  transform: scale(1.1);
}

.social-icons {
  color: white;
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
  /*color: #ff2d55;*/
  color: white;
}
