
/* AUMENTAR TAMAÑO DE ENCABEZADO CON IMAGEN DE FONDO */
.pkp_site_name_wrapper {
  height: 300px; /* Puedes ajustar a 400px si quieres más alto */
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.pkp_structure_head {
  background-color: transparent !important;
}


/* BOTONES DE REDES SOCIALES FIJOS */
.floating-socials {
  position: fixed;
  right: 15px;
  bottom: 100px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-socials a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-socials a:hover img {
  transform: scale(1.1);
}
