/* Aumentar el tamaño del logo */
header .logo img,
.site-logo img,
.custom-logo,
.custom-logo-link img {
  max-width: 220px !important; /* Aumenta este valor a gusto */
  height: auto !important;
  transition: all 0.3s ease-in-out;
}

/* Si quieres animación al pasar el mouse */
header .logo img:hover,
.custom-logo-link img:hover {
  transform: scale(1.05);
}