.cabecera-logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8em;
  padding: 0.8em 0.9em;
  border-bottom: 3px solid #e5e5e5;
  margin-bottom: 0.6em;
}

/* LOGO */
.cabecera-logo img {
  width: 96px;
  height: 96px;
  z-index: 2;
}

/* TEXTOS */
.cabecera-textos {
  line-height: 1.2;
  z-index: 2;
}

.cabecera-lema {
  font-size: 0.95em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cabecera-titulo {
  font-size: 1.2em;
  margin-top: 0.15em;
  color: #333;
}

/* ENLACE INVISIBLE QUE CUBRE TODA LA CABECERA */
.cabecera-volver {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}

/* EFECTO HOVER SUTIL (opcional) */
.cabecera-logo:hover {
  background-color: #f7f7f7;
}

/* MÓVIL */
@media (max-width: 768px) {
  .cabecera-logo {
    gap: 0.6em;
  }

  .cabecera-logo img {
    width: 56px;
    height: 56px;
  }

  .cabecera-lema {
    font-size: 0.8em;
  }

  .cabecera-titulo {
    font-size: 1em;
  }
}
